Sravanti
Sravanti

Reputation: 1407

How to show RequiredField validators before client-side JavaScript?

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

Answers (1)

Ghyath Serhal
Ghyath Serhal

Reputation: 7632

Try the below

if(Page_ClientValidate("Validation Group"))
{
}

Upvotes: 2

Related Questions