if the button is "runat = server",as soon as you push it, it will refresh the window.

解决方案 »

  1.   

    可以给按钮写客户端事件
                                //提交刷新
                               function refreshPage()
    {
    document.all.item('').action=".aspx" 
    document.all.item('').submit()
    }
    //脚本刷新
    function pageLoad()
    {
    var name=navigator.appName
    var vers=navigator.appVersion
    if(name=='Netscape')
    {
    window.location.reload(true)
    }
    else
    {
    history.go(0)
    }
    }
      

  2.   

    reponse.write("<Script> parent.locatin.reload; </Script>")