First
<configuration>
<system.web>
<sessionState mode="InProc" cookieless="true"timeout="60"/>
sessionState>
system.web>
configuration>
Second
Go to global.asax file and write the code below:
void Session_Start(object sender, EventArgs e)
{
Session.Timeout = 60;
}
I tried Both methods in my application but, still my application session ends with in 20 min's . please give me the solution
Abhishek KumarPosted Aug 24, 2015, 2:20 AM
Ganapavarapu NageswararaoPosted Aug 23, 2015, 8:53 AM
Sumit JoshiPosted Aug 22, 2015, 4:27 AM
Rajeesh MenothPosted Aug 22, 2015, 1:59 AM
chandrashekar vsPosted Aug 22, 2015, 1:27 AM
Abhishek KumarPosted Aug 6, 2015, 8:35 AM