Article information
DESCRIPTION In ASP.NET, only one <form> tag is allowed per page and Sitefinity already uses one <form> tag for each page. If you look at the HTML source, you will notice that Sitefinity is wrapping the entire page in a <form> HTML element. When one inserts a control with another <form> tag in it, ASP.NET (and as a result Sitefinity) breaks. SOLUTION Remove the <form> tag from the custom form and use ASP.NET User Controls instead. Another workaround is to set the form in <IFRAME> and set the TARGET attribute of the form to _parent.