I'm putting a ContentPlaceHolder control inside the head tag, like so:
<head id="head1" runat="server">
<asp:ContentPlaceHolder ID="ContentInHead" runat="server">
</asp:ContentPlaceHolder>
</head>
If I build this page, I get the following errors:
Error 3 Validation (XHTML 1.0
Transitional): This name contains uppercase characters, which is not
allowed. C:\projects\website\site.master
Error 4 Unrecognized tag prefix or
device filter 'asp'.
C:\projects\website\site.master
I'm using Visual Web Dev Express build 50727.42
Whats going on?
-Aakash