
Page Tracking in ASP.NET - CodeProject
Jun 24, 2004 · Create a modified Session Tracker Class. Simulate a session_end event when session expires. Persist this class in a static hash table in view of session_end event problem. Update the …
Global Exception Handling in ASP.NET - CodeProject
Feb 22, 2002 · You accomplish this task by editing your Global.asax file as follow: protected void Application_Error(object sender, EventArgs e) { // excpt is the exception thrown // The exception that …
Pre-Compile ASPX pages in .NET 1.1 - CodeProject
Jan 21, 2004 · About the Global.asax file The Global.asax file contains global event handlers that get called for important events such as Session_Start, Application_Start, Application_BeginRequest etc. …
A Walkthrough to Application State - CodeProject
Jun 11, 2010 · What is Global.asax To handle application events or methods, we can have a file named Global.asax in the root directory of your application. At any single point of time, an HTTPApplication …
Master Page Globalization - CodeProject
Mar 13, 2009 · Global.asax is the first thing called upon page request, and thus provides us with a way to affect control creation. Because the culture of the current thread resets to default on page redirect …
Using IHttpAsyncHandler and XMLHttpRequest to “push ... - CodeProject
Sep 30, 2009 · The SandBox.CometSample.Global type is the namespace and class name of the "code behind" for the Global.asax and can be found in the Global.asax.cs file. The message you get implies …
EntityFramework CodeFirst – DbContext Initializer - CodeProject
May 26, 2011 · For updating the class level changes to table, open the global.asax file. If you are an ASP.NET developer, you may be aware that the global.asax file contains different application and …
Creating a Code First Database Initializer Strategy
May 30, 2011 · The best place to do that is in the Global.asax file in the Application_Start handler. You will use the SetInitializer method that exists in the Database class to wire up the strategy. Here is a …
Custom Routes for MVC Application - CodeProject
Dec 13, 2011 · Custom Routes It is possible to develop an MVC application without creating a Custom Route. But sometimes, there is a situation to change the pattern of URL in which it makes sense to …
Routing Integration - WCF feature - CodeProject
Apr 16, 2012 · Routing Integration Steps: 1: In Global.asax.cs in Application_Start event add the ServiceRoute to the RouteTable. These routes added represents the virtual URIs which service will …