Posts

ASP.NET MVC Good Practice

http://www.codemag.com/Article/1405071

ASP.NET Identity Articles

Good articles for ASP.NET Identity: http://www.asp.net/identity/overview/getting-started/aspnet-identity-recommended-resources http://www.asp.net/identity/overview/features-api/account-confirmation-and-password-recovery-with-aspnet-identity

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(); } }) })