Simply,
When creating a new aspx page in Visual studio, it automatically adds tags like these:
<form id="form1" runat="server">
Are these form tags required to wrap the entire HTML output of the page? e.g.:
<body>
<form id="form1" runat="server">
HTML GOES HERE
</form>
</body>
Or can they just be placed where you require an actual form? Thanks