function Subscribe() {
if (typeof (Page_ClientValidate) == 'function') {
Page_ClientValidate();
}
if (Page_IsValid) {
CheckUser();
}
}
The script is bound to the asp.net button by validating the expression. I have another form on my page with a specific validation group.
When I click on this button (subject to all conditions). It causes an error in another validation group. How and why is this happening? Is there any way to counter this?
It is as if Javascript is checking all fields no matter which group they are in / in
source
share