If you put runat=server in a form tag, can you not post to another page? I want to use the field validators but I want to go to a different page afterwards. I can't seem to get it to work. <BR><BR>my form tag looks like this:<BR><BR><form id="Form1" method="post" action="info.aspx" runat="server"><BR><BR>but when I go to debug it, it posts back to the original page. Any ideas? Thanks.I assume you have a button that, when clicked, submits the form, something like:<BR><BR><asp:button id="btnSubmit" runat="server" Text="Submit" /><BR><BR>within your server-side form. In that, place an OnClick event handler (if you don't already have one), like:<BR><BR><asp:button id="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" /><BR><BR>Then, in your btnSubmit_Click event handler, do a Response.Redirect to the page you want to send the user to after they submit the form:<BR><BR>Sub btnSubmit_Click(sender as Object, e as EventArgs)<BR> Response.Redirect("somePage.aspx")<BR>End Sub<BR><BR>hth