Reputation: 1407
i want to show the Require filed validators first.then i want to validate the page controls. how to acheive this.
i wrote onclientclick event like this. but i want to show required filed validators first .
Upvotes: 0
Views: 246
Reputation: 7632
Try the below
if(Page_ClientValidate("Validation Group"))
{
}
Upvotes: 2