Response.Redirect(Request.Url.AbsolutePath + "?rnd=随机数");
后面加一个随机的参数,应该可以解决

解决方案 »

  1.   

    to dbase(熊猫眼) 
    还是不行。
    to bitsbird(一瓢.net)
    页面不让刷新,反复弹出窗口。
    我是用的httpfile.PostedFile来上传图片的。
      

  2.   

    觉得应该是 在程序里面 作个像IEE F5的刷新的功能。
    用js
    Response.Write(@"<script language=javascript>window.history.go(0);</script>)");
    报错:the page cannot be refreshed without resending information.Click Retry to
    send the information again, or click Cancel to return the page that you were trying to view.
    怎么解决?
      

  3.   

    是缓存的原因。
    <meta HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
      

  4.   

    to  vzxq(灵感人) 
    在 head 里面加上了
    <meta HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
    还是不行,还是得手工 刷新。