I can't seem to get this form to Post Back:
Page.IsPostBack returns false. Do I need runat="server" ? I have two forms on one page, so I can't use it on both of them.
Code:
<form action="test.aspx" method="post">
<input type="text" id="blah" />
<input type="submit" value="post" />
</form>
Comment