Is it not possible to create and run your own serverside forms?
I get the error message:
A page can have only one server-side Form tag.
when I add runat="server" to my form.
It is caused by the form tag in the framework. But how do I get around this? I want my form to maintain the viewstate. I cant use episerver xfomrs because I need to be able to dynamicly change the values in the form during the fill in process.
A webform should only have one serverside form. There are workarounds to this, but I've never had to do that, and I've created lots of forms that maintain state.
Your server controls will automatically maintain state, and the problem is often that they maintain too much state. :-)
/Steve