For some reason my button wont fire the click-event.. As for now I only have an asp:button with the runat,OnClick and Id attributes.. I have checked a few times that the name of the event is the same as the value of the OnClick attribute.. It does how ever fire the Page_Load event..
Any ideas?
Is your method name
ButtonId_Click
?If it's not, make sure you have set
AutoEventWireup="false"
in your page declaration.