This post should be in the ASP forum, anyhow:
This property must be set in the global.asa file and be at the root level of your web site. The following is cut n paste code and sets your session time out to 20 minutes
---------------
<script runat=server language=VBScript>
sub application_onStart
end sub
sub session_onStart
session.timeout = 20
end sub
sub session_onEnd
end sub
</script>
--------------------------
NOTE: You must have a global.asa file currently if you are timing out at 5 minutes, the default time is 20 mins.
Wind is your friend
Matt
|