Built-In Objects
Path Information
The virtual path to this file is:
/209/282ln07builtinObjects2.asp
The physical path to this file is:
C:\Documents and Settings\Administrator\Desktop\Web-P4\209\282ln07builtinObjects2.asp
Session Information
The session timeout has been set to:
30 minutes
Your session started at:
5/20/2012 7:17:13 PM
Your session ID is:
37085065
SOURCE CODE:
<%
Session.Timeout = 30
Session.Contents("sStart") = Now()
dim strPathInfo, strPhysicalPath
strPathInfo = Request.ServerVariables("PATH_INFO")
strPhysicalPath = Server.MapPath(strPathInfo)
%>
<html>
<head><title>More Built-In Objects</title></head>
<body bgcolor = "#FFFF99" text = "#800000">
<div align="center">
<h1>Built-In Objects</h1>
<h3>Path Information</h3>
The virtual path to this file is: <br><b><% = strPathInfo %></b><br><br>
The physical path to this file is: <br><b><% = strPhysicalPath %></b><br>
<h3>Session Information</h3>
The session timeout has been set to: <br><b><% = session.timeout %> minutes</b><br><br>
Your session started at: <b><br><% = Session.Contents("sStart") %></b><br><br>
Your session ID is: <br><b><% = Session.SessionID %></b>
</div></body></html>