var
您好,欢迎访问景安网络旗下资讯网!
运营 建站 系统 数据库 编程

首页 > ASP/.NET  >不依赖OutPutCache的服务器缓存完美方法

不依赖OutPutCache的服务器缓存完美方法

来源:网络作者:vps发布时间:2016-08-24点击:1904

服务器缓存不依赖URL的方法(OutPutCache)及客户端不缓存,完美做法,可以避免客户端缓存。

服务器缓存不依赖URL的方法(OutPutCache)及客户端不缓存,完美做法,可以避免客户端缓存,可以避免客户端缓存:

<%Response.Cache.SetNoStore();%>

---------------------------------------------------------------------------------------------

经过测试,下面的方式会清空服务器端的缓存。不适合配合Global.asax使用

<% Response.CacheControl = "no-cache" %>
<% Response.AddHeader "
PRagma", "no-cache" %>
<% Response.Expires = -1 %>s

---------------------------------------------------------------------------------------------

服务器缓存方式:

Global.asax:

新增函数:

   public override string GetVaryByCustomString(HttpContext context, string custom)
        {
            if ("Student".Equals(custom))
            {
                return string.Format("{0}", "动态数据");
            }
            return base.GetVaryByCustomString(context, custom);
        }

页面:

  <%@ OutputCache Duration="180" VaryByCustom="Student" VaryByParam="none"  %>

关键词: OutPutCache

版权声明:本文系技术人员研究整理的智慧结晶,转载勿用于商业用途,并保留本文链接,侵权必究!

本文链接:https://www.zzidc.com:443/info/aspnet1/2360.html

返回顶部