Dennis Röttger
Dennis Röttger

Reputation: 1985

Button Click Event does not fire

I have the following ASP-Markup:

<asp:Button runat="server" ID="btnSubmit" meta:resourcekey="btnSubmit" CssClass="submit" OnClick="btnSubmit_Click" />

And the following Code-Behind:

protected void btnSubmit_Click(object sender, EventArgs e)
    {
    }

For some reason, the Button Click Event does not fire ... it works on other pages with the exact same markup, I've tried doing "C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i" - didn't make a difference.

Also, there is nothing AJAXy going on in this page.

Any help would be greatly appreciated.

Thanks,

Dennis

Upvotes: 0

Views: 1901

Answers (1)

Wouter de Kort
Wouter de Kort

Reputation: 39888

Try disabling the ValidationControls and see if the event fires.

Also try adding CauseValidation=false to the markup of your Button.

Upvotes: 3

Related Questions