How to retrieve HTTPModule details from HttpModuleCollection ?
In one of my previous post I have talked about How to get list of all active HttpModules in ASP.NET?…
In one of my previous post I have talked about How to get list of all active HttpModules in ASP.NET?…
Well, knowing internal structure of an ASP.NET event system can always be an element of fun and interests. Recently I…
We most the time run into the issue where we need to release a patch which requires a change in…
In this tip I am going to discuss how you can use Session with in your custom HTTPHandler. By default…
While working with ASP.NET web application you must be familiar with one of most important state management technique “Session”. If…
In this Post, I am going to discuss about web.config. Normally in our daily life, we used to have some…
How to manage the controller’s session state? Simply we can decorate the controller class with “SessionState” attribute. [SessionState()] attribute accepts…
By default ViewState is saved inside the web page. In ASP.NET using SessionPageStatePersister ViewState can be saved inside Session instead. This helps in securing the ViewState as well as reducing the size of the web page