Hi,
Kentico CMS does not allow you to use several form tags on one page (only one is allowed). There is already one form tag used on the page therefore inserting another form tag into page, you would create following code:
<form runat="server"> //kentico
<form method=""post>//your
</form> //your
</form> //kenticoAs you can see this in not what you would like to achieve.
In general, if you would like to post data from the form control you can use one of following ways:
1. use iframe and insert the whole page code into it
2. use webclient class to post data instead of form control. You can find an example here:
www.netomatix.com/httppostdata.aspx If you need to add a form into editable region, you could create a
inline control and apply methods from the point 2 in it.
Best regards,
Ivana Tomanickova