Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Mar 07, 2007 01:00 PM by windows_mss
Participant
1394 Points
303 Posts
Mar 06, 2007 09:32 AM|LINK
<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1; Trusted_Connection=yes" cookieless="false" timeout="1" /> Here my Default time is 10, If User is Idel for more than 10 min in that case page should be automatically redirected into some other page. Help Needed, Thanks In Advance
webform JavaScript Session
All-Star
37421 Points
5632 Posts
Mar 06, 2007 10:41 AM|LINK
Check below links
Redirect after session expired
HC
32101 Points
3764 Posts
Mar 07, 2007 04:09 AM|LINK
Mar 07, 2007 01:00 PM|LINK
windows_mss
Participant
1394 Points
303 Posts
Automatic Redirect after Session Expire
Mar 06, 2007 09:32 AM|LINK
In course of my project now i facing an proble that i have to Redirect the page to some other Page after the Default Session Time Expire
webform JavaScript Session
NJoy Programming...
Blogging @ xploredotnet
Haissam
All-Star
37421 Points
5632 Posts
Re: Automatic Redirect after Session Expire
Mar 06, 2007 10:41 AM|LINK
Check below links
Redirect after session expired
HC
MCAD.NET
| Blog |
Raymond Wen ...
All-Star
32101 Points
3764 Posts
Re: Automatic Redirect after Session Expire
Mar 07, 2007 04:09 AM|LINK
You can use Session_OnStart in global.asax. This event will be fired when the expired user access a web page again, a new session is created for him.
void Session_OnStart() {
response.redirect("url");
}
Hope it helps.
windows_mss
Participant
1394 Points
303 Posts
Re: Automatic Redirect after Session Expire
Mar 07, 2007 01:00 PM|LINK
{
}
else
{
Server.Transfer("StartPage.aspx", False);
}
NJoy Programming...
Blogging @ xploredotnet