标签:
在开发中有时并不希望页面被缓存,特别是弹窗。在弹窗页面中,加入以下方法。
方法一:
<head runat="server">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
</head>
方法二:
在后端代码中添加,建议放在Page_Load事件中
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Page.Response.Buffer = false;
Page.Response.Cache.SetNoStore();
}
}
标签:
原文地址:http://blog.csdn.net/ljxqsqmoliwei/article/details/43445665