View previous topic :: View next topic |
Author |
Message |
imagineabyss -
Joined: 22 Apr 2003 Posts: 7
|
Posted: Mon Aug 11, 2003 8:10 pm Post subject: Timeouts Too Short On Sessions. |
|
|
IS there a place to control this in Abyss? Or is this inside sellisofts activehtml.
Timeouts of sesssion occur like in 3 mins. |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Tue Aug 12, 2003 2:44 pm Post subject: Re: Timeouts Too Short On Sessions. |
|
|
imagineabyss wrote: | IS there a place to control this in Abyss? Or is this inside sellisofts activehtml.
Timeouts of sesssion occur like in 3 mins. |
This is related to your ASP code: see the following example (taken from http://www.w3schools.com/asp/showasp.asp?filename=demo_gettimeout)
Code: |
<html>
<body>
<%
response.write("<p>")
response.write("Default Timeout is: " & Session.Timeout & " minutes.")
response.write("</p>")
Session.Timeout=30
response.write("<p>")
response.write("Timeout is now: " & Session.Timeout & " minutes.")
response.write("</p>")
%>
</body>
</html>
| [/code] _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
|