Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
All-Star
27499 Points
4097 Posts
Feb 29, 2012 05:28 PM|LINK
ASP.Net validators are performing client side and server side validations together...
make sure you use Page.IsValid contdition to execute your code.
e.g. in the button click event handler you need to write
if(Page.ISValid)
{
//write your code to execute when all validations are success....
}
sreejukg
All-Star
27499 Points
4097 Posts
Re: .net Validators not working on any browser Chrome, Firefox etc.
Feb 29, 2012 05:28 PM|LINK
ASP.Net validators are performing client side and server side validations together...
make sure you use Page.IsValid contdition to execute your code.
e.g. in the button click event handler you need to write
if(Page.ISValid)
{
//write your code to execute when all validations are success....
}
My Blog