1

i just want to enable/disable the validatos don't want to fire them. waiting for reply.thanks in advance.

ValidatorEnable(document.getElementById("")); this function enable the validator and perform validation... i don't want the validation.

Abdul Basit
  • 712
  • 2
  • 19
  • 37

1 Answers1

1

You can use

ValidatorEnable(document.getElementById("ValidatorControlID"), false);

to disable validator.

TechDo
  • 18,398
  • 3
  • 51
  • 64