Disable Validator

Joined
Aug 24, 2011
Messages
1
Reaction score
0
I set validator.enabled=false and validator.isvalid=false in client side.but when i check Validator.IsValid in Server side it return false.

what is the command that disable Validator in Client Side and Server Side?
 
Last edited:
Joined
Jan 22, 2020
Messages
9
Reaction score
0
I set validator.enabled=false and validator.isvalid=false in client side.but when i check Validator.IsValid in Server side it return false.

what is the command that disable Validator in Client Side and Server Side?
//To enable/disable all validators of a validation group
//server side
foreach (BaseValidator val in Page.Validators)
{
if (val.ValidationGroup == "LoginUserValidationGroup")
{
val.Enabled = false;
}
}
// client side
for (i = 0; i < Page_Validators.length; i++) {
if (Page_Validators.validationGroup == "LoginUserValidationGroup") {
ValidatorEnable(Page_Validators, false);
}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,576
Members
45,054
Latest member
LucyCarper

Latest Threads

Top