ASP about page Cache Cleanup Method Summary

Source: Internet
Author: User
Tags join

Every time on chinaasp always have a lot of netizens asked how to make the ASP page refresh, IIS4 management under the page does not refresh the problem is much more serious than IIS5, and sometimes do add some control of the page cache statement or not what role. Why I am not very clear, to ask Microsoft Bar:-)

Now I'll summarize some ways to clear the page cache as follows:
1, in the ASP page first join
Response.Buffer = True
Response.ExpiresAbsolute = Now ()-1
Response.Expires = 0
Response.CacheControl = "No-cache"
Response.AddHeader "Pragma", "No-cache"


2, in the HTML code to join
<HEAD>
<meta http-equiv= "Pragma" content= "No-cache" >
<meta http-equiv= "Cache-control" content= "No-cache" >
<meta http-equiv= "Expires" content= "0" >
</HEAD>

3, when the original page is called back to pass a parameter to the page
Href= "****.asp?random ()"

In fact, the use of IIS5 after such problems naturally less a lot, so now I rarely use such a few words to force the update page, the above is our original in IIS4 under the development of some experience, hope to give you a little help!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.