No asp.net 2.0, o acesso dinâmico a metatags pode ser suportado. Por exemplo, palavras-chave podem ser adicionadas dinamicamente.
Private Sub CreateMetaTags()
Dim hm As New HtmlMeta()
Dim head As HtmlHead = CType(Page.Header, HtmlHead)
hm.Name = "Palavras-chave"
hm.Content = "VB.Net, VB.NET, .NET"
head. Controls.Add(hm)
End Sub