I am currently working within a content template, and I now wish to add a contact form to the side of this page that leads to another file that sends the form details as an email.
Naturally, I've stumbled into the problem of having multiple forms on a page. All I want to be able to do is to send this form from a template to another file (SendMail.aspx).
How can I accomplish this through a basic HTML form within a template?
If you have multiple forms on a page, try giving them both a unique validationgroup, that should allow you to submit the forms seperately. They also both need their independent <form runat="server"> .. so don't enclose both forms in one big runat="server".
Adding contact form to template
I am currently working within a content template, and I now wish to add a contact form to the side of this page that leads to another file that sends the form details as an email.
Naturally, I've stumbled into the problem of having multiple forms on a page. All I want to be able to do is to send this form from a template to another file (SendMail.aspx).
How can I accomplish this through a basic HTML form within a template?
If you have multiple forms on a page, try giving them both a unique validationgroup, that should allow you to submit the forms seperately. They also both need their independent <form runat="server"> .. so don't enclose both forms in one big runat="server".
is working on a reply...