下面的函數必須放在app_code文件夾中的常用函數文件中。我該怎麼做?如何在app_code的函數中設置頭標籤?
它給錯誤是這樣的: 參考非共享成員需要的對象引用
Public Sub setHeadTags(ByVal title As String, ByVal description As String, ByVal keywords As String)
Dim metaDescription As HtmlMeta = DirectCast(Page.Master.FindControl("metaDescription"), HtmlMeta)
Dim metaKeywords As HtmlMeta = DirectCast(Page.Master.FindControl("metaKeywords"), HtmlMeta)
metaDescription.Attributes.Add("content", "My big content description")
metaKeywords.Attributes.Add("content", "all, are, my, keywords")
Dim pageTitle As HtmlTitle = DirectCast(Page.Master.FindControl("pageTitle"), HtmlTitle)
pageTitle.Text = "Hey hey heY"
結束子
:)什麼是你的網頁? – Younes 2010-03-11 07:49:44
頁面是使用一些主文件的某個頁面。 – John 2010-03-11 09:27:26