Hi,
I am having an issue where my button is not calling the OnClick event when an ID is set on my DIV tag, here is my code:
<div id="page">
<h1>Coming Soon</h1>
<br /><br /><br /><br /><h2>Subscribe</h2>
<form id="form1" runat="server">
<asp:TextBox Text="" ID="email" runat="server" AutoPostBack="True"></asp:TextBox>
<asp:Button ID="submitButton" runat="server" Text="Button" OnClick="submitButton_Click1" />
<br />
</form>
</div>
If I remove id="page" from the <DIV> tag, it works fine... any idea's?
Thanks!
...
Go to the complete details ...