-
I want to know what is a "time out" time for a value sent by asp file. And how to change this time.
script which sends value to next asp file is like below
<a href="/scripts/test/test.asp?test=<%=test%>"></a>
Then next asp file receive and holds? the value like below
test = request.querystring("test")
How long this value is held when I leave this second asp page open for a while. It seems value vanishes in a time.
-
a time-out is an amount of time set on your server wich resets stuff like session-variables, querystrings, etc...
You can solve that problem by putting them in a variable...
-
thanks!
Thanks for your reply.
I put " Session.Timeout= * (min, MAX 24H) " then I could change the tioneout value of asp.
I first put 2000 min which was over MAX time. Then server ignore this line and session timed out in 20 min (default)!