IE中由于缓存导致页面数据不能及时更新的解决办法

1:在你不需要缓存的页面加上<% @ OutputCache Location = " None "  VaryByParam = " None "   %>

2:若是整个系统不需要缓存 可配置

<caching>
      <outputCache enableOutputCache="false"></outputCache>
 </caching>

原文地址:https://www.cnblogs.com/hyd309/p/2567428.html