本文介绍了如何避免使用脚本在asp.net中的formview中单击多个按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

这里我需要如何避免多次点击,这里我完成了那个过程。现在需要的是如果我点击保存验证消息显示两个时间以避免这种情况。 />


编码是: -



脚本:



 function ClientSideClick(myButton){

if ( typeof (Page_ClientValidate)== ' function')
{
if (Page_ClientValidate()== false )
{返回 false ; }
}


if (myButton.getAttribute(' type')== ' button'){

myButton.disabled = true ;

}





按钮是: -



< asp:按钮ID =   InsertButton runat =   server CausesValidation =   True CommandName =  插入 
CssClass = savebutton1231 EnableTheming = false SkinID = skinBtnSave onclientclick = ClientSideClick(this) UseSubmitBehavior = f另外 OnClick = InsertButton_Click>< / asp:Button>









i需要如何避免两次相同的验证消息。

解决方案



hi to all,
Here i need how to avoid multiple click, here i done that process.now need is if i click save validation message show two time.how to avoid that.

coding is:-

script:

function ClientSideClick(myButton) {

            if (typeof (Page_ClientValidate) == 'function')
               {
                if (Page_ClientValidate() == false)
                { return false; }
            }


            if (myButton.getAttribute('type') == 'button') {

                myButton.disabled = true;

            }



button is:-

<asp:Button ID="InsertButton" runat="server" CausesValidation="True" CommandName="Insert"
                                                                                  CssClass="savebutton1231" EnableTheming="false" SkinID="skinBtnSave" onclientclick="ClientSideClick(this)" UseSubmitBehavior="false" OnClick="InsertButton_Click"></asp:Button>





i need how to avoid same validation message twice.

解决方案



这篇关于如何避免使用脚本在asp.net中的formview中单击多个按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 17:58