Client-side validate of ASP. NET button)

Source: Internet
Author: User
I did this case yesterday.

Customer's question:

Hi,

I wowould like to check using JavaScript if the client side validation is true and then only allow the onclick event to be fired and the server side code to be executed.

 

< ASP: button onclientclick =   " If (page_clientvalidate () return true; else return false; " Onclick = " Nameofmethod " Causesvalidation = " True "   />

 

I have tried the above Code but the server side method is executed even if the client side validation is false.

Thanks

My answer:

HiDenniscy

Try to use this, it works on my machine

 

Onclientclick = " Return checkform (); " // Don't forget ";"

Bool checkform ()
{
If(Page_clientvalidate ())Return True;Else Return False;
}

In practical applications, the onclientclick provided by. Net can also be used for client verification of <input type = "button" runat = "server">,
To avoid unnecessary server requests.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.