Ask a Question related to ASP, Design and Development.
-
J. Muenchbourg #1
Session.timeout
I have a session object Session("login") whereas I need to extend the
time on this to 1 hour, instead of the default 20 minutes.
After initializing Session("login"), how would I change the timeout
value?
???
Muench
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
J. Muenchbourg Guest
-
how to specify session timeout
Hi I am setting objects in the session using following tycnique. <mx:RemoteObject id="loginidObj" source="servlet" showBusyCursor="true"... -
Session Timeout
Hi, You can control when the session end by using the Session_onEnd event in global.asax. But when the session expired the user won’t make any... -
PHP session timeout
I've modify the php.ini the session.gc_maxlifetime to reduce the time of timeout of the session variabiles. But it not seems to go. In fact the... -
IIS Session timeout
Is there a way to notify a client browser that their IIS Session is about to OR has just expired? -
How to set session timeout
Setting session timeout in web.config file does not seem to have any effect. Any explanation or suggestion will be appreciated. -
Evertjan. #2
Re: Session.timeout
J. Muenchbourg wrote on 15 aug 2003 in
microsoft.public.inetserver.asp.general:
All session variables last as long as the session exists.> I have a session object Session("login") whereas I need to extend the
> time on this to 1 hour, instead of the default 20 minutes.
> After initializing Session("login"), how would I change the timeout
> value?
>
So just do
<%
Session("login")="sure"
Session.Timeout=60
%>
<http://www.w3schools.com/asp/prop_timeout.asp>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest



Reply With Quote

