David,
When I press submit the page reloads and does not go to the action value specified in the form tag. I have an aspx setup to pull all form items and build an email and send it. Anyway, that page never sends the user to the email page
Please debug your code. The information is too limited.
If you set action attribute of form tag like this:
WebForm1.aspx (Web Page):
<form id="Form1" method="post" runat="server" action="WebForm2.aspx">
</form>
Than ASP.NET will automatically remove this attribute from the form and set it to page name itself while rendering that HTML form. This is the way page PostBack mechanism works in ASP.NET (1.1). So rendered HTML code will look like this:
Rendered HTML Page:
<form name="Form1" method="post" action="WebForm1.aspx" id="Form1">
</form>
You can set action attribute if you remove Runat=”server” from your form tag.
asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
asp wysiwyg html editor: http://cutesoft.net/ASP
asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
Live Support: http://cutesoft.net/live-support/default.aspx