How to check Page.Validate() on client side (JavaScript) in ASP.Net?

后端 未结 2 1778
猫巷女王i
猫巷女王i 2021-01-30 10:54

I want to check page validation on client side, like Page.Validate() but it\'s a server side method. Is there any client side function which can work like Pag

相关标签:
2条回答
  • 2021-01-30 11:30

    There is a mini-clientside-validation API:

    http://msdn.microsoft.com/en-us/library/aa479045.aspx#aspplusvalid_clientside

    alt text

    and here are some functions to trigger validation on validators:

    alt text

    0 讨论(0)
  • 2021-01-30 11:34

    Page_ClientValidate() will work. It returns true if the page was valid and it works fine.

    If you are using ASP.NET 2.0, pass the validation group name as a parameter.
    E.g.

    if(Page_ClientValidate("SomeValidationGroup"))
         alert('its valid');
    

    Otherwise if there is no validation group Page_ClientValidate("") will handle it.
    E.g.

    if(Page_ClientValidate(""))
         alert('its valid');
    
    0 讨论(0)
提交回复
热议问题