vote up 0 vote down star

I have a simple textbox with a required field validation control attached to end and then being displayed in a validation summary at that bottom of the page. Everything works great on it but the validation seems to fire on the page's initial load which obviously sets off the required validation and displays the error message.

How do I set this control to only validate after the form has been submitted?

flag

1 Answer

vote up 2 vote down check

It sounds like you have code in your page load like this:

if (!Page.IsValid()) //...

What you really want is this:

if (Page.IsPostBack && !Page.IsValid()) //...
link|flag
Good catch, Joel! That's most probably the reason. – Cerebrus Mar 20 at 16:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.