2011-06-09 190 views

回答

3

试试这个:

Dim tempMeta As New HtmlMeta 
    Dim tempHead As HtmlHead = Page.Header 
    With tempMeta 
     .Attributes.Add("property", "example") 
     .Content = "example" 
    End With 
    tempHead.Controls.Add(tempMeta) 

编辑:对不起,我错过了你的问题的 “属性” 属性。

相关问题