asp.net 模态窗口 清缓存
在网上找了一下,有一个写html标签清模态窗口缓存的办法,但是并没有效果,
求一个确实有效的方法。
------解决方案--------------------
模态窗口里面的网页,加入禁用缓存就行了。
在不需要缓存的页面中添加如下代码
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
Response.Cache.SetNoStore();
------解决方案--------------------
一个话ok
Response.Expires=-1;