home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / Timeout_VBScript.asp < prev    next >
Text File  |  1997-10-25  |  469b  |  25 lines

  1. <%@ Language=VBScript %>
  2. <%  Option Explicit  %>
  3.  
  4. <HTML>
  5.     <HEAD>
  6.         <TITLE>Session Management</TITLE>
  7.     </HEAD>
  8.  
  9.     <BODY bgcolor="white" topmargin="10" leftmargin="10">
  10.         
  11.         <!-- Display Header -->
  12.  
  13.         <font size="4" face="Arial, Helvetica">
  14.         <b>Session Management</b></font><br>   
  15.  
  16.         <p>This ASP Session will timeout after 25 minutes
  17.         of inactivity.
  18.  
  19.         <%
  20.             Session.Timeout = 25
  21.         %>
  22.  
  23.     </BODY>
  24. </HTML>
  25.