You could do this : if ((Page_ClientValidate()) on clicking a button.
This could force it to do the evaluation of required validators.
You could use a dummy text box with a required validator with no error
message. In your button click handler, you would write:
dummytext.value = "1".
if ((Page_ClientValidate()) {
dummytext.value = "";
}
See what happens..
SS
|