Hello Everybody!
I am currently trying to make my existing ASP.NET WebForms application use a Site.Master template.
Creating the Site.Master template wasn't really a problem as it works like a charm.
The problem starts with deriving from it and putting controls in the given ContentPlaceHolder's.
At runtime I receive following error message:
Control 'ctr00_Login1' of type 'Login' must be placed inside a form tag with runat=server
This comes from the LoginControl I put in the Site.Master template.
How should I handle this error and what is the best practise for using elements in Master Pages?
Thanks in advance for all help!