View my complete profile

Monday, September 19, 2011

how to increase session timeout at application Level in ASP.NET

Add Global.asax in your Project
Then following method write for session time out

void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
Session.Timeout = 240;

}

0 comments:

Site Meter