vote up 2 vote down star
1

I have a ASP.NET web form. The first time I submit the form, the SubmitButton_Click event is raised.

The form is returned to the browser either with validation errors or with the option to submit the form again with new values.

When the form is sumbitted again, the SubmitButton_Click event never fires. Page_Load fires, but not the button.

Does anyone know why I would be seeing this behavior on the server side?

(I am using jQuery and the validation control client-side but I don't think it is causing an issue. Thought I would mention it anyway).

Edit:

<asp:Button ID="SubmitButton" OnClick="SubmitButton_Click"
      runat="server" />

Event is set on the control, not in code.

flag

Code will help. Especially how you are wiring up your event handler. – Aaron Daniels Jun 4 at 21:10

4 Answers

vote up 0 vote down check

Is the JQuery submitting the form? If __doPostBack() isn't called on the client side (with the approprate arguements), the server side event won't occure.

link|flag
The form is still posting to the server as Page_Load fires. That's what seems strange to me. – y0mbo Jun 4 at 21:24
Page_Load() is fired whenever the page is loaded for any reason, so that doesn't rule out my suggestion. If you can rule out my suggestion, @Joel Coehoorn and @nikmd23 also have important things to look at. – jrcs3 Jun 4 at 21:44
I guess this is probably what is happening. The validation routine seems to submit the form before the __doPostBack() can be called. – y0mbo Jun 8 at 20:26
vote up 1 vote down

This can happen with dynamically created controls, if you don't create them early enough in the page life cycle. You're a bit short on details, but is your button created dynamically?

link|flag
vote up 0 vote down

How are you "wiring up" your event handler?

It sounds like you are wiring it up in a if(IsPostback) block, which is not being run the second time...

link|flag
Beat me to it! I think you mean if (!IsPostBack) though :-) – dariom Jun 4 at 21:15
No, not wired in code behind. – y0mbo Jun 4 at 21:25
vote up 0 vote down

How is the Click event handler associated with the submit button? Declaratively or in code?

If it's in code, make sure that you're not doing it in a block like this:

if (!Page.IsPostBack) {
    submitButton.Click += new EventHandler(submitButton_Click);
}

This will prevent the event handler from being attached when the page is posted back (i.e. Page.IsPostBack is true).

link|flag

Your Answer

Get an OpenID
or

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