How to trigger ASP.NET client-side validations without submit?

我是研究僧i 提交于 2019-12-07 09:40:19

问题


I have a website in ASP.NET (WebForms, NOT MVC) which has a survey form divided in several slides. Each slide has a next button that, obviously does a transition (client-side, not post back or remote request) to the next slide.

In each slide I have several ASP.NET controls with their related validators. I want this validators to be triggered when I click the next button (or maybe when each input loses focus?).

I remembered ASP.NET doing client side validation on lost focus, but maybe I'm wrong... (I quit doing ASP.NET development about 3 years now, so I can't remember)

Thanks

UPDATE:

It would be better to make ASP.NET trigger each validator when the associated control lost focus. I remember ASP.NET doing this (or am I dreaming? =P)


回答1:


First you need to make sure all of your validators have target controls specified using the "TargetControlID" Attribute on the validators.

Then you can set up a validation group per page and specify the group name in your next button and on the controls themselves.

If you are using regular expression validators you can choose them from this website

To Validate Client Side If you are using custom validators you can create a client function and specify it on the custom validator using the ClientValidationFunction attribute and by setting EnableclientScript = "true" on the custom validator.

Just be sure your client function has sender and args parameters.




回答2:


It looks like there's a supplied JavaScript function called Page_ClientValidate which should be callable to check the validation manually from JavaScript. I haven't used it, though, so YMMV.




回答3:


put all your client-side validators into the same validationgroup and with your 'next' button add the same validation group. When you click the button it will automatically trigger all the validators before it does the post-back.

as to manually triggering the validation... you might also be able to use ValidatorOnSubmit(). I remember doing this in another project but i'm having a hard time finding the code.




回答4:


It seems that enabling 'SetFocusOnError' on each validator triggers the validation whenever I try to leave the field.




回答5:


In short decorate your model, now Data Annotations are supported from Asp.Net 4.5 Check my Answer here..Client side webform validations



来源:https://stackoverflow.com/questions/4716507/how-to-trigger-asp-net-client-side-validations-without-submit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!