Response.Expires

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.

Syntax

Response.Expires [**=**number]

Parameters

  • number
    The time, in minutes, before the page expires. Use -1 to specify immediate expiration. IIS returns an error if this number exceeds January 18, 2038 when it is calculated to a date by the IIS server.

Applies To

Response Object

Remarks

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 = -1 %> 

If there are multiple calls to Response.Expires on a single page, the server uses the shortest time period.

Requirements

Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.

Server: Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.

Product: IIS

See Also