If you want to build a Web application quickly, do it with ASP.NET Web Forms. However, you have to be willing to give up a lot: client-side coding and Ajax is more awkward in Web Forms than MVC, you won’t…

If you want to build a Web application quickly, do it with ASP.NET Web Forms. However, you have to be willing to give up a lot: client-side coding and Ajax is more awkward in Web Forms than MVC, you won’t…
Easy to Improve Your ASP.NET MVC Codebase In this article, I will explain about 5 tips you can follow to keep your ASP.NET MVC codebase working as you’d expect. Understand the queries in your problem domain The root cause of…
How to Custom Error And Not Found Pages On ASP.NET MVC And IIS When testing an ASP.NET application locally, chances are you are using the ASP.NET Development Web Server. However, the production website is most likely powered IIS. There are…
When you first got into web development and developed your first web site, it was probably a simple 2 or 3 page site, probably static and a lot of links. If a page’s URL changes, you would have to change every…
As you know, the Visual Studio template creates some standard views with instructions to start with personalization. In this post, I will show you how to analyze the controller for the default URL and the view associated with it. The…
In this article, I will explain to you how to persist data with TempData in ASP.NET MVC 5 using 2 methods. For your information, TempData is used to pass data from current request to subsequent request (means redirecting from one…
Html.EditorFor helper method is used to bind the data from Model to the View page in respective html form elements. Html.EditorFor helper method is very dynamic in nature and very smart as it changes its output based on what data type…
Today I will explain about data anntations for MVC in ASP.NET. Do you know Data Annotations? Data Annotations is a library in the .NET Framework that helps in validation. The developer doesn’t need to create the logic for the validation…
MVCCheckBoxList MVCCheckBoxList is an extension for the MVC HtmlHelper class to create a POSTable checkbox list on a view, based on the data passed from the view model or defined locally. Features Earlier, when we need to create the checkbok…
It is very easy to play or display video in ASP.NET MVC using HTML5. We can do this using custom action filter in MVC. We can play various files like MP4, Ogg, WebM, etc. format. Here are step by step…