I am using ASP.NET VB and built a simple login/register app. I was trying to add a loginStatus control to the master page but this results in error
A page can have only one server-side Form tag.
Are there any workarounds for that? And actually, why does loginStatus control requires to be in form anyway?
Thanks
Yes, since you are using web forms, you are required to only have one
<form runat="server">in your page, but somehow you have two, or zero. Get it back to one, and make sure all .NET controls are inside of it. Obviously, the form should be defined in the master page.