我有一个vb.net表单按钮,在执行代码后面的函数之前,它会经过jquery验证,实际上,无论是真是假,函数都会停止,永远不会调用vb.net函数。我该如何使它继续执行代码后面?
vb.net表单(文本框和按钮)
<asp:TextBox ID="ToCc" runat="server"></asp:TextBox>
<asp:Button ID="emailSend" runat="server" Text="send" />
jquery:
$("#<%=emailSend.ClientID %>").click(function(){
if($("#<%=ToCc.ClientID %>").val() == ""){
alert("this fienld can t be empty") ;
return false ;
} else{
return true ;
}
});
vb的电子邮件点击功能是
Protected Sub emailSend_Click(ByVal sender As Object, ByVal e As EventArgs) Handles
emailSend.Click
MsgBox("do any thing ")
End Sub