CacheControl in ASP.NET [转]

CacheControl

The CacheControl property allows you to set the HTTP/1.1 Cache-Control header in a response.Syntax
 
Response.CacheControl [ = Cache Control Header ]

Parameters

Cache Control Header
The following is a partial list of values supported by the HTTP/1.1 Protocol. Please see the Hypertext Transfer Protocol -- HTTP/1.1 specification at the World Wide Web Consortium Web site, section 14.9, for more complete descriptions.
 
ValueDescription
Private
A cache mechanism may cache this page in a Private cache and resend it only to a single client. This is the default value. Most proxy servers will not cache pages with this setting.
Public
Shared caches, such as proxy servers, will cache pages with this setting. The cached page can be sent to any user.
No-cache
Do not cache this page at all, even if for use by the same client.
No-store
The response and the request that created it must not be stored on any cache, whether shared or private. The storage inferred here is non-volatile storage, such as tape backups. This is not an infallible security measure.

Note

Between your Web server and a user requesting your page, there may be proxy servers configured to cache Web pages for faster response times. Usually ASP pages are developed to be unique for each user, or may contain secure information. 
 
For this reason, IIS sets this property to "Private" so that proxy servers or other cache mechanisms will not cache pages.  You can override this default value, setting it to any value supported by the HTTP/1.1 protocol, documented in the Hypertext Transfer Protocol -- HTTP/1.1 specification at the World Wide Web Consortium Web site.
 
If there is no cache mechanism between your Web server and a client computer, or if a proxy server is running HTTP/1.0, CacheControl will be ignored.
 
Setting CacheControl to "public" may seem to improve the performance of your .asp files, but it is discouraged if you generate custom HTML for every request, and a proxy server might interfere with the response.
 
The values for CacheControl are strings, and must be enclosed in quotation marks (" "). You must set CacheControl before any response is sent to the client unless response buffering is enabled.

Example

CacheControl comes before the <HTML> tag to ensure that it is set before content is sent to the client.
--- CacheControl_NoBuffer.asp ---
 
 
 
 
<% Response.Buffer = False Response.CacheControl = "private"%>
 
 
<HTML>
 
 
<HEAD>
 
 
<TITLE>Response.CacheControl Example</TITLE>
 
 
</HEAD>
 
 
<BODY> Output from this page is sent to the client as it is being processed.<BR>
 
 
It will not be cached.<BR> Today is <%= Date %>, <%= Time %><BR>
 
 
<H3>Please enter your credit card number:</H3>
 
 
<FORM NAME="Order" METHOD="POST" ACTION="order.asp ">
 
 
<INPUT TYPE="TEXT" NAME="CreditCard">
 
 
<INPUT TYPE="SUBMIT" VALUE="Submit" NAME="Submit">
 
 
</FORM>
 
 
</BODY>
 
 
</HTML>
--- CacheControl_Buffer.asp ---
 
 
 
 
 
 
<% Response.Buffer = True %>
 
 
<HTML><HEAD><TITLE>Response.CacheControl Example</TITLE></HEAD>
 
 
<BODY> Output from this page is sent to the client once it is completely processed by
 
 
the server, so we can set CacheControl anytime.<BR>
 
 
<% Response.CacheControl = "private" %>It will not be cached.<BR>
 
 
Today is <%= Date %>, <%= Time %><BR>
 
 
<H3>Please enter your credit card number:</H3>
 
 
<FORM NAME="Order" METHOD="POST" ACTION="order.asp ">
 
 
<INPUT TYPE="TEXT" NAME="CreditCard">
 
 
<INPUT TYPE="SUBMIT" VALUE="Submit" NAME="Submit">
 
 
</FORM>
 
 
</BODY>
</HTML>
 
from:http://www.asp-dev.com/main.asp?page=94
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值