HtmlMeta.Content 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定由 HtmlMeta 控制項定義的中繼資料屬性值。
public:
virtual property System::String ^ Content { System::String ^ get(); void set(System::String ^ value); };
public virtual string Content { get; set; }
member this.Content : string with get, set
Public Overridable Property Content As String
屬性值
中繼資料屬性值。
範例
下列程式碼範例示範如何使用 HtmlMeta 控制項來定義網頁的 HTML <meta>
元素。 定義兩 <meta>
個元素,一個列出描述頁面的關鍵字,另一個列出建立頁面的日期。 屬性 Content 是用來定義 content
每個 <meta>
標記的屬性。
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
// Create two instances of an HtmlMeta control.
HtmlMeta hm1 = new HtmlMeta();
HtmlMeta hm2 = new HtmlMeta();
// Get a reference to the page header element.
HtmlHead head = (HtmlHead)Page.Header;
// Define an HTML <meta> element that is useful for search engines.
hm1.Name = "keywords";
hm1.Content = "words that describe your web page";
head.Controls.Add(hm1);
// Define an HTML <meta> element with a Scheme attribute.
hm2.Name = "date";
hm2.Content = DateTime.Now.ToString("yyyy-MM-dd");
hm2.Scheme = "YYYY-MM-DD";
head.Controls.Add(hm2);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>HtmlMeta Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
View the HTML source code of the page to see the two HTML meta elements added.
</div>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
' Create two instances of an HtmlMeta control.
Dim hm1 As New HtmlMeta()
Dim hm2 As New HtmlMeta()
' Get a reference to the page header element.
Dim head As HtmlHead = Page.Header
' Define an HTML <meta> element that is useful for search engines.
hm1.Name = "keywords"
hm1.Content = "words that describe your web page"
head.Controls.Add(hm1)
' Define an HTML <meta> element with a Scheme attribute.
hm2.Name = "date"
hm2.Content = DateTime.Now.ToString("yyyy-MM-dd")
hm2.Scheme = "YYYY-MM-DD"
head.Controls.Add(hm2)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>HtmlMeta Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
View the HTML source code of the page to see the two HTML meta elements added.
</div>
</form>
</body>
</html>
備註
屬性 Content 與 屬性一 Name 起定義頁面的中繼資料屬性。
屬性 Content 會轉譯為 content
所產生 HTML <meta>
元素的 屬性。