I\'m trying to programmatically add a . It is working fine when there is a Head element with runat = \"server\" in the
Head
runat = \"server\"
Or you could just put your meta-tag in the header, with an ID and a runat="server"... then in the code behind say
myMetaTag.Content = "noindex,follow";
or
myMetaTag.Visible = false;
or whatever you'd like.