First, you will need to remove your form tag within your content.
Write a javascript file and include it to your content page. You may add it to your page by using
ClientScript.RegisterClientScriptInclude("common", ResolveUrl("~/js/common.js"));
Your javascript file should contain a javascript functions that changes the form's id:
function onSubmit() {
document.forms[0].Id = 'YourId';
}
Then, you will need to use a button or imagebutton (or any elements that support the postbackrul property)
<asp:ImageButton onClientClick="onSubmit();" ImageUrl="images/submit.gif" id="submitButton" runat="server" PostBackUrl=http://www.yourdomain.com/form.aspx />
Eric on Web Development