home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 September
/
CHIPCD_9_99.iso
/
software
/
uaktualnienia
/
OptionPackPL
/
iis4_07.cab
/
Expire_VBScript.asp
< prev
next >
Wrap
Text File
|
1998-04-27
|
881b
|
35 lines
<%@ LANGUAGE = VBScript %>
<% Option Explicit %>
<%
' Because the Expiration Information is sent in the HTTP
' headers, it must be set before any HTML is transmitted
' Ensure that this page expires within 10 minutes...
Response.Expires = 10
' ...or before Jan 1, 1999, which ever comes first
Response.ExpiresAbsolute="Jan 1,1999 13:30:15"
%>
<HTML>
<HEAD>
<TITLE>Setting Expiration Information</TITLE>
</HEAD>
<BODY BGCOLOR="White" topmargin="10" leftmargin="10">
<!-- Display Header -->
<font size="4" face="Arial, Helvetica">
<b>Setting Expiration Information</b></font><br>
<hr size="1" color="#000000">
<p>This page will expire from your browser's cache in
10 minutes. If it is after Jan. 1, 1999 (1:30 PM), then
the page will expire from the cache immediately.
</BODY>
</HTML>