HtmlMeta.Scheme Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece un atributo scheme
que se utiliza para interpretar el valor de propiedad de metadatos definido por el control HtmlMeta.
public:
virtual property System::String ^ Scheme { System::String ^ get(); void set(System::String ^ value); };
public virtual string Scheme { get; set; }
member this.Scheme : string with get, set
Public Overridable Property Scheme As String
Valor de propiedad
El atributo scheme
.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar el HtmlMeta control para definir elementos HTML <meta>
para una página web. Se definen dos <meta>
etiquetas, una palabra clave de lista que describe la página y otra que enumera la fecha en que se creó la página. La Scheme propiedad se usa para la etiqueta relacionada con <meta>
la fecha para ayudar a los agentes de usuario a leer el valor de fecha.
<%@ 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>
Comentarios
La Scheme propiedad permite especificar un scheme
atributo del elemento HTML <meta>
representado. El scheme
atributo se puede usar para proporcionar agentes de usuario, como exploradores de cliente o motores de búsqueda, contexto adicional para interpretar la propiedad de metadatos.
La Scheme propiedad se representa en el scheme
atributo del elemento HTML <meta>
resultante.