但其他脚本,与 asp.net 验证控件一起进行脚本验证时,容易使 asp.net 验证控件的验证,失去效果,下面提供了一种比较好的解决方案
代码
<asp:Button ID="btnOK" runat="server" Text="确定" onclick="btnOK_Click" OnClientClick="if (typeof(Page_ClientValidate) == 'function') if(Page_ClientValidate()){ return isValidUserName();} "
style="margin-left: 0px" Width="49px" />
style="margin-left: 0px" Width="49px" />
此处的 isValidUserName()是自己想要验证的东西,这样就会先让 asp.net 验证控件验证,然后再验证自己的东西。