在有验证码的登陆框登陆后,按IE后退按钮如何刷新验证码

在有验证码的Page_Load加上
  Response.Expires   =   -1;   
  Response.ExpiresAbsolute   
=   DateTime.Now.AddSeconds(-1);   
  Response.CacheControl   
=   "no-cache";
原文地址:https://www.cnblogs.com/Magicam/p/1232023.html