event not firing![RESOLVED]
I have an ASP.NET website and ASP.NET buttons as navigation. when a user clicks on the button it directs them to another page requested
wierd thing is, sometimes it works, sometimes it doesnt.
on my index.aspx page a couple of buttons events do not get fired but redirects the page back to itself. what could be the problem?
all i am doing is:
Response.Redirect("somepage.aspx");
and yes, the page specified exists
what on earth is going on?
[edit]I was copying and pasting the controls from form to form...therefore the events werent put in the Initialise part of the page....[/edit]