Calendar.DayNameFormat 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 el formato de nombre de los días de la semana.
public:
property System::Web::UI::WebControls::DayNameFormat DayNameFormat { System::Web::UI::WebControls::DayNameFormat get(); void set(System::Web::UI::WebControls::DayNameFormat value); };
[System.ComponentModel.Bindable(true)]
public System.Web.UI.WebControls.DayNameFormat DayNameFormat { get; set; }
public System.Web.UI.WebControls.DayNameFormat DayNameFormat { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.DayNameFormat : System.Web.UI.WebControls.DayNameFormat with get, set
member this.DayNameFormat : System.Web.UI.WebControls.DayNameFormat with get, set
Public Property DayNameFormat As DayNameFormat
Valor de propiedad
Uno de los valores de DayNameFormat. El valor predeterminado es Short
.
- Atributos
Excepciones
El formato de nombre del día especificado no es ninguno de los valores de DayNameFormat.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar la DayNameFormat propiedad para especificar que los días de la semana se muestran en su totalidad.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Calendar Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Calendar Example</h3>
<asp:Calendar id="calendar1" runat="server"
ShowDayHeader="True"
DayNameFormat="Full"/>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Calendar Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Calendar Example</h3>
<asp:Calendar id="calendar1" runat="server"
ShowDayHeader="True"
DayNameFormat="Full"/>
</form>
</body>
</html>
<%@ Page Language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title> Calendar DayNameFormat Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar DayNameFormat Example </h3>
<asp:Calendar id="Calendar1"
daynameformat="Shortest"
runat="server"/>
</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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title> Calendar DayNameFormat Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> Calendar DayNameFormat Example </h3>
<asp:Calendar id="Calendar1"
daynameformat="Shortest"
runat="server"/>
</form>
</body>
</html>
Comentarios
Utilice la DayNameFormat propiedad para especificar el formato de nombre de los días de la semana. Esta propiedad se establece con uno de los DayNameFormat valores de enumeración. Puede especificar si los días de la semana se muestran como el nombre completo, el nombre corto (abreviado), la primera letra del día o las dos primeras letras del día.
Esta propiedad solo se aplica si la ShowDayHeader propiedad está establecida true
en .
Los nombres de día se basan en la configuración local del servidor.