Platform SDK: IIS SDK |
The Expires property specifies the duration of time before a page that is cached on a browser expires. If the user returns to the same page before it expires, the cached version is displayed.
Response.Expires [= number]
When your .asp file calls Response.Expires, IIS creates an HTTP header, indicating the time on the server. If the system time on the client is earlier than the system time on the server (because of either the client or server having an inaccurate time setting, or time-zone differences), setting the parameter to 0 does not have the effect of expiring the page immediately. You can use the Response.ExpiresAbsolute property to immediately expire a page. In addition, you can use a negative number for the Expires property to expire the response immediately, as shown in the following code:
<%Response.Expires =index.html -1 %>
If there are multiple calls to Response.Expires on a single page, the server uses the shortest time period.
Platforms: Windows 2000 with IIS 5.0 installed,
Windows XP with IIS 5.1 installed,
Windows Server 2003 family with IIS 6.0 installed
What did you think of this topic? |
Order a Platform SDK CD |