ASP Timeout Property
Complete Session Object Reference
The Timeout property sets or returns the timeout period for the Session object for this application, in minutes. If the user does not refresh or request a page within the timeout period, the session
will end.
Syntax
|
Session.Timeout[=nMinutes]
|
| Parameter |
Description |
| nMinutes |
The number of minutes a session can remain idle before the server terminates it.
Default is 20 minutes |
Examples
<%
response.write("<p>")
response.write("Default Timeout is: " & Session.Timeout)
response.write("</p>")
Session.Timeout=30
response.write("<p>")
response.write("Timeout is now: " & Session.Timeout)
response.write("</p>")
%>
Output:
Default Timeout is: 20
Timeout is now: 30
|
Complete Session Object Reference

Need an easy way to get data into XML, or transform XML to another format?
MapForce lets you map XML data to/from any combination of XML, database, flat file, Excel 2007, XBRL, or Web services data.
Then it transforms data instantly or auto-generates royalty-free data integration code for recurrent conversions.
New features in Version 2010!
Download a free, fully functional 30-day trial to experience the following features:
- Easy-to-use, graphical data mapping interface
- Instant data transformation
- XSLT 1.0/2.0 and XQuery code generation
- Java, C#, and C++ code generation
- Advanced data processing functions
- Support for all major relational databases including SQL Server, IBM DB2, Oracle, and more
- Visual Studio & Eclipse integration
Download a fully-functional trial today!
|
|
|
|