System.Web Namespace HttpApplication Class
Occurs when ASP.NET acquires the current state ( for example, session state ) associated with the current request.
[ VB ]
Public Event AcquireRequestState As EventHandler
[ C# ]
public event EventHandler AcquireRequestState;
[ C++ ]
public: __event EventHandler* AcquireRequestState;
In [ JScript ], you can handle the events defined by a class, but you cannot define your own.
The event handler receives an argument of type EventArgs containing data related to this event.
This event is raised after the handler has been created.
HttpApplication Members