Validation Controls

  • Thread starter Thread starter Charles A. Lackman
  • Start date Start date
C

Charles A. Lackman

Hello, I have placed many validation controls on an aspx webform and a user
control that allows the visitor to enter a username and password and bypass
the form. The problem I am having is that the validation controls are
firing and not allow the visitor to logon because the validation controls
are saying that the other textboxes need to be filled in.

Is there a way around this problem? Or do I have to discard all the
validation controls on the page and namually generate validation logic in
the submit buttons?

Thanks

Chuck
 
Make sure ur bottons .causevalidation is set to false
and u should be able to manualy check the things you want
ie if myvalidator.isvalid
 
Back
Top