What is ie cache and how to clear ie cache?

Source: Internet
Author: User

About ie cache:

To speed up web page access, Internet Explorer will store the web page content (including images and cookie files) you have visited on your computer using a cumulative acceleration method. This storage space is called ie cache. In the future, when we visit the website, ie will first search for this directory. If there is already accessed content, ie does not need to be downloaded from the Internet, but is directly called from the cache, this increases the speed of Website access.

 

 

How to clear ie cache:

When you use the dialog mode in Asp.net, you will find that each time the page is opened with the same content, the page content is not refreshed, this is the reason for the cache, the solution is as follows:
ASP. NET clear page Cache
(1) response. Buffer = true;
Response. expiresabsolute = system. datetime. Now. addseconds (-1 );
Response. expires = 0;
Response. cachecontrol = "no-Cache ";
Response. addheader ("Pragma", "No-Cache ");
(2) HTML Method
<Head>
<Meta HTTP-EQUIV = "Pragma" content = "no-Cache">
<Meta HTTP-EQUIV = "cache-control" content = "no-Cache">
<Meta HTTP-EQUIV = "expires" content = "0">
</Head>

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.