How can I add multiple forms to the template? I need to add one for users to submit to our email newsletter. I also have several topics that need to have forms for contacting us and so on...
Thanks.
How can I add multiple forms to the template? I need to add one for users to submit to our email newsletter. I also have several topics that need to have forms for contacting us and so on...
Thanks.
Dont think this can be done in master pages, you will have to create .NET controls to handle this functionality going forward.
I found one quick way around it by putting the <form runat="server"> only around the <asp:ContentPlaceHolder>. Then I can include the forms within the template master page outside of that. The primary issue is that you can not nest forms within each other. Seems to work fine...