有可能缓存导致页面不载入Page_Load
在.aspx页面中加入如下代码,放到head标记之间:
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<%Response.Cache.SetCacheability(HttpCacheability.NoCache); %>
[
本帖最后由 wangnannan 于 2010-11-15 11:18 编辑 ]