I have a WebForm in my app and when I add a second <form></form> it crashes the script because I’m only allowed one Form.
What is the best way to include a 2nd form on the script?
Should I be calling it with a UserControl instead?
Many thanks for any guidance.
If you want the second form to be a client side form (no
runat="server"attribute), simply place it outside the server side form.If you want two server side forms, this is not possible – one of the limitations of ASP.NET webforms.