Click here to Skip to main content
15,896,527 members
Please Sign up or sign in to vote.
3.00/5 (2 votes)
See more:
how we submit page without checking required filed validator in asp.net, whether required field validator exist on that page.
Posted

You need to set your Button CauseValidation property to False
CausesValidation="false"
.
 
Share this answer
 
you need to set the
CausesValidation="false"
property of your button

OR another way like change the validationGrop value if you validation control validationGroup attribute value and your button validationGroup value are not equal then also validation control will not work.
 
Share this answer
 
set CausesValidation Property of Button to False;
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900