LowercaseRoutes – ASP.NET MVC routes to lowercase URLs
About this Article We aware of that our Asp .Net MVC application generate mixed-case URLs like https://dotnet-helpers.com/Home/About or https://dotnet-helpers.com/home/about. So if we type URLs then it wont consider the upper case or lower case. In ASP.NET MVC,
Donut Hole Caching in ASP.NET MVC
Donut Hole Caching is the inverse of Donut cache. As the previous statement, the Donut Caching is used to cache a maximum portion of the view/page, but Donut Hole Caching is used to cache only
Donut Caching with Asp.Net MVC
Donut caching used to cache an entire web page except for one or more small portion of the page. In other words, suppose we want to cache a maximum portion of the view except the
Enable Errors of Our ASP.NET MVC Views at Compile Time
In this post, we are going to discuss about how to capture "view" errors at compile time. By default, ASP.NET MVC projects won't compile the views on the building process of our application. But don't think Visual
Handle multiple submit buttons on an ASP.NET MVC
In this post, we will discuss how to handle the multiple submit button event in ASP .NET MVC without using javascript. The form could contain more than one submit button issuing a form post to
Output Caching Attribute in ASP.NET MVC
The main goal of this post is to explain how we can improve the performance of an ASP.NET MVC web application by using the advantage of the output cache. The output cache enables us to
ASP.Net MVC Request Life Cycle / MVC Application Execution Process
Introduction In this post, we are going to discuss about the each step in the life of an ASP.NET MVC from request to response. Here we will walk through the steps involved in a life
Creating a custom route handler in ASP.NET MVC
ASP .NET MVC has provide more flexible options to extend the functionality to make a programmer easy and smooth. Custom route handlers are one of them. How MVC Routing Works? URLs are very important part