Forum Moderators: open
First person to answer get a virtual high five
Dim hd As HtmlHead = CType(Page.Master.FindControl("Head"), HtmlHead)
Dim mt As New HtmlMeta
mt.Attributes.Add("name", "description")
mt.Attributes.Add("content", "Place your description here")
hd.Controls.Add(mt)
mt = New HtmlMeta
mt.Attributes.Add("name", "keywords")
mt.Attributes.Add("content", "place, your, keywords, here")
hd.Controls.Add(mt)