Yes.
They're specified in the masterpage thusly :
<head runat="server">
<title></title>
<link href="Main.css" rel="stylesheet" type="text/css" />
<meta name="description" content="description" id="metaDescription" runat="server" />
<meta name="keywords" content="keywords" id="metaKeywords" runat="server" />
And set thusly:
If sTitle = "" Then sTitle = Util.GetPageName(iPage)
If sKeywords = "" Then sKeywords = Util.GetDomainMetaKeywords()If sDescription = "" Then sDescription = Util.GetDomainMetaKeywords()
metaDescription.Attributes(
"content") = sDescriptionmetaKeywords.Attributes("content") = sKeywords
Me.Page.Title = sTitle
But when rendered they appear like this :
<link href="Main.css" rel="stylesheet" type="text/css" /><meta id="ctl00_metaDescription" name="description" content="" /><meta id="ctl00_metaKeywords" name="keywords" content="" />
All on one line.
I hope I've explained myself a bit better now. Getting *extremely* frustrated with it. ;-)