Posts

Entity Framework: Get Started

Following video will help you to get started with Entity Framework:   or visit http://msdn.microsoft.com/en-us/data/entity-framework-model-first

Asynchronously Streaming Video with Web API

Nice articles to learn how to use Web API beyond the classic and traditional user as API Asynchronous Streaming with Web API Asynchronously Streaming Video with Web API

MVC 4 Web API

The great video to start with MVC 4 WEB API download the following video and learn from PM of ASP.NET team http://media.ch9.ms/ch9/a9c8/95120d80-784c-453c-a3c7-36bd8897a9c8/DanRothDemonstratesWebAPIUsingVisualStudio2012RC_mid.mp4

Phone Number Auto Increment Decrement Focus

Following Jquery functions are used to set focus on text box on max length and set focus to prev text box on click of backspace when length gets zero. $(function () { $('.phoneText,.AlternatePhoneText,.FaxText').keyup(function (e) { if (e.which == 8) { if ($(this).val().length == 0)  $(this).prev(':input').focus(); } else { if ($(this).val().length == $(this).attr('maxlength'))  $(this).next(':input').focus(); } }) })  

SetProperty and GetProperty with C# Reflection

SetProperty and GetProperty with C# Reflection   private object getProperty ( object containingObject, string propertyName ) { return containingObject. GetType ( ) . InvokeMember ( propertyName, BindingFlags. GetProperty , null , containingObject, null ) ; } private void setProperty ( object containingObject, string propertyName, object newValue ) { containingObject. GetType ( ) . InvokeMember ( propertyName, BindingFlags. SetProperty , null , containingObject, new object [ ] { newValue } ) ; }

Receive Json Web response in C#

Following code use to get Json Response in My object using (var twitpicResponse = (HttpWebResponse)request.GetResponse()) {         using (var reader = new StreamReader(twitpicResponse.GetResponseStream())) {             JavaScriptSerializer js = new JavaScriptSerializer();             var objText = reader.ReadToEnd();             MyObject myojb = (MyObject)js.Deserialize(objText,typeof(MyObject));         }     }

IIS 7 : To Execute function/code for very first request only

//In Following method call to FirstRequestInitialization is done every time beginRequest called for a Application. protected void Application_BeginRequest( Object source, EventArgs e) {     HttpApplication app = ( HttpApplication )source;     HttpContext context = app.Context;     // Attempt to peform first request initialization     FirstRequestInitialization .Initialize(context); } //Following Class will check the Flag(s_InitializedAlready) and according that it will execute Initializer function and check that request comes for first time or not. class FirstRequestInitialization {     private static bool s_InitializedAlready = false ;     private static Object s_lock = new Object ();     // Initialize only on the first request     public static void Initialize( HttpContext context)   ...