Possible Duplicate:
ASP.net render meta tag validly
This is in my .aspx file:
<meta name="viewport" runat="server" content="width=380,height=575" id="viewPort" />
This is what appears on the rendered HTML file in the browser:
<meta id="viewPort" name="viewport" content="width=380,height=575"></meta>
What actually appears is not HTML5-compliant.
Any idea why that is changing?