I'm running into the same issue. Mark, could you elaborate?
Actually, I just figured out a fix. I was trying to put the <form> tag in the content, which did not like it. When I put it in the template, it worked. However, I would prefer if I didn't need a special template for forms.
Umbraco Contour will only work properly if placed inside a <form runat="server"> tag.
Receiving the above error on ii7, windows 7, IIS, umbraco v4.7.0
Created a form with one text field
Tried to add it to a tinyMCE field this showed up
=========begin===========
Contact
Receive Newsletter==========end===========
Umbraco Contour will only work properly if placed inside a <form runat="server"> tag.
Comment author was deleted
Hi Mark,
Yeah that's because the Contour form is an asp.net usercontrol.
So you'll need to make sure that this is added inside a form with runat server attribute
<form runat="server"></form>
Solution: removed nested form elements and relocated the runat attribite for asp.net form around
Mark, could you explain a bit more how you solved this? I'm still having the same error with Contour w/ Umbraco 4.7.0 on IIS6/Server 2003.
I'm running into the same issue. Mark, could you elaborate?
Actually, I just figured out a fix. I was trying to put the <form> tag in the content, which did not like it. When I put it in the template, it worked. However, I would prefer if I didn't need a special template for forms.
is working on a reply...