ASP.NETキャッシュの取り消しと無効化
1580 ワード
クライアントのキャンセル:
サーバー側のキャンセル:
サーバ側:
Globalの中:
ページ:
ページベースクラス:
最も簡単な方法:-)
CSDNのこのフォーラムを学んで、URLの後ろでランダムにいくつかの役に立たないパラメータをプラスして、例えば:http://xxx/xxx/xxx.jpg?p=xxx
IEはURLでキャッシュを制御しているので解決
原文:http://ourstrade.blog.163.com/blog/static/123663391200972531115487/
<html>
<head>
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
</head>
サーバー側のキャンセル:
サーバ側:
Response.Buffer = true;
Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
Response.Cache.SetExpires(DateTime.Now.AddDays(-1));
Response.Expires = 0;
Response.CacheControl = "no-cache";
Response.Cache.SetNoStore();
Globalの中:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
HttpContext.Current.Response.Cache.SetNoStore();
}
ページ:
<%@ OutPutCache Location="None"%>
ページベースクラス:
public class PageBase : Page
{
public PageBase() {}
protected override OnLoad( EventArgs e ) {
Response.Cache.SetNoStore();
base.OnLoad();
}
}
最も簡単な方法:-)
CSDNのこのフォーラムを学んで、URLの後ろでランダムにいくつかの役に立たないパラメータをプラスして、例えば:http://xxx/xxx/xxx.jpg?p=xxx
IEはURLでキャッシュを制御しているので解決
原文:http://ourstrade.blog.163.com/blog/static/123663391200972531115487/