ASP (client Cache)

Source: Internet
Author: User

Usually on the server side everyone has done a lot of cache work, ASP. NET cache or Memerycache is always ignoring the client cache.

Because everyone knows that no matter which client will cache the sites that have been visited, the browser cache time is short, so it's best to customize the browser cache.

This time you need to modify the HTTP header information, the header information has a field:

Cache-control:no-cache

有很多办法可以修改头字段,比较方便通用的就是在web.config里设置,例如:

<?xml version= "1.0"?>
<configuration>
<system.webServer>
<staticContent>
<clientcache cachecontrolmode= "Usemaxage" cachecontrolmaxage= "8760:00:00"/>
</staticContent>
</system.webServer>
<system.web>
</system.web>
</configuration>

Cachecontrolmaxage= "8760:00:00" cache for 8,760 hours

ASP (client Cache)

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.