Asp.net禁止缓存
今天在Windows Server 03 + IE6的环境下运行Asp.net程序,发现打开同一个页面时,只有第一次打开时才执行Page_Load事件。添加以下语句,禁止读取缓存就好了。
禁止缓存
//禁止缓存 2012-4-16 //IE Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache); //Firefox Response.Cache.SetNoStore();