On 3 of my pages i have a button which is used to update
data the user enters in textboxes etc...
The problem is when the button is clicked the event doesnt
get fired and the IsPostBack property is always false. I
have tried setting up the handler with
<asp:Button onClick="handlerMethod" runat="server"/>
and at other times by adding the line
this.btnUpdate.Click += new EventHandler(btnUpdateClick);
in the InitializeComponent method.
I have a few other pages which have buttons on them but
they work fine, is there some property somewhere that i may
have set that is causing this, i have been baffled by this
problem for the last 3 days and it is really eating into my
project deadline, any help would be greatly appreciated.
Thank you,
Declan