In my session start event how can I know which page or handler triggered the Event?
void Session_Start(object sender, EventArgs e)
{
}
In my session start event how can I know which page or handler triggered the Event?
void Session_Start(object sender, EventArgs e)
{
}
You can use HttpContext.Current.Request.Url
for example.
You can use this while creating session:
Path.GetFileName( Request.Url.AbsolutePath )