Pages

Sunday, February 3, 2013

Prevent the Browser from Caching an ASP Page

Most ASP books and articles state that you need to set the Response. Expires property to 0 or -1 to prevent the end user's browser from caching an ASP page. However, this is only partially correct, because in order to work correctly for all browsers brands and versions, you also need to add a special Pragma HTTP header, and to disable any caching by a proxy. This is the ASP code you should put on top of your page to achieve the desired behavior:


No comments:

Post a Comment