I am using ASP.NET to process plain forms, posting back to myself. (I dont want to use ASP.NET forms, with runat="server )
To IsPostBack is not set when it really has to be a postback.
What is the reason for this?
Should I not post back to myself?
<form method="post" id="theForm" action="http://localhost/index.aspx">
<input type="submit" value="submit" />
<input ID="titleTB" type="text" />
<input id="zipTB" type="text" /><br />
</form>