In ASP.NET to process requests a pipeline model is used which consists of HTTPModules and HTTPHnadler objects. This pipeline model forms the low level framework which is used by web pages and web services. Here we will see a high level overview of … [Continue reading] about HTTP Request in ASP.NET
Understanding HTML Helper Methods in MVC
HTML Helper methods are used to generate HTML in ASP.NET MVC. Helper methods are used to render HTML in the view. Helper methods generates HTML output that is part of the view. They provide an advantage over using the HTML elements since they can be … [Continue reading] about Understanding HTML Helper Methods in MVC
Understanding Caching in ASP.NET
Caching can improve application performance. Caching is more important for web applications since performance is an important factor in the case of web applications. In this article we will see how caching in ASP.Net is used to improve application … [Continue reading] about Understanding Caching in ASP.NET
Begining ASP.NET MVC
To better understand why we will ever need to use ASP.NET MVC instead of the traditional, user friendly ASP.NET WebForm's to develop ASP.NET applications we need to look into some of its shortcomings and how they are addressed in ASP.NET MVC … [Continue reading] about Begining ASP.NET MVC
Brief Overview of Controller and Action Methods in MVC
In this article we will see details of how the controller and action methods works. Whenever a new request comes into an ASP.NET MVC application it is handled by the controller class. It decides how to handle the request. Normally it fetches (or … [Continue reading] about Brief Overview of Controller and Action Methods in MVC