Tuesday, November 20, 2007

How to prevent caching in IE

How to prevent caching in IE

Tprevent caching in IE

Step 1

Most of the time, you will need to deal with clients IE when you抮e administering your website. IE will automatically do caching to improve its performances but this sometimes will result in error or incomplete data being displayed. Therefore you might need to ask your developer to adjust some settings in IE with ASP codes.

Step 2

To code to do this is listed here:

<% Response.CacheControl = "no-cache" %>

<% Response.AddHeader "Pragma", "no-cache" %>

<% Response.Expires = -1 %>

IIS 5.0 component in Windows 2000 server

IIS 5.0 comes in as a pre-built component when user installs the Windows 2000 Server unless user chooses otherwise.

No comments: