如题

解决方案 »

  1.   

    在按纽的提交事件中加上Response.Redirect("当前页地址")或Response.Write("<script>window.location.href=wondow.location.href;</script>")
      

  2.   

    在按钮事件最后加上Response.Redirect(本网页)
      

  3.   


    var tid;
    var bClicked = false;
    function sbm(){
        if(bClicked){
            alert("websbook.com提示您,请不要重复递交");
            return false;    
        }
        bClicked = true;
        tid = setTimeout("doit()", 10000);
        document.forms[0].submit();
    }function doit(){
        if(tid!=null){clearTimeout(tid);tid=null;}
        bClicked = false;
    }
    </script><form action="xxx" target="hf">
      <input name="btn" type="button" onclick="sbm();" value=" 提交 ">
    </form>
    <iframe name="hf"></iframe>
    </body>不解释...测试通过可以用于  服务端控件