Keywords in Masterpages ?

Discussion in 'ASP.NET 2.0' started by scm22ri, Sep 15, 2007.

  1. Hi Everyone,

    Would anyone know how to add the "keywords" field in masterpages ?

    Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
    Dim tag As HtmlMeta = New HtmlMeta()
    tag.Name = "description"
    tag.Content = "My description for this page"
    Header.Controls.Add(tag)
    End Sub
     

Share This Page