Calendar.DayNameFormat Property
Gets or sets the name format for days of the week.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Web.UI.WebControls.DayNameFormatOne of the DayNameFormat values. The default value is Short.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The specified day name format is not one of the DayNameFormat values. |
Use the DayNameFormat property to specify the name format for the days of the week. This property is set with one of the DayNameFormat enumeration values. You can specify whether the days of the week are displayed as the full name, short (abbreviated) name, first letter of the day, or first two letters of the day.
This property applies only if the ShowDayHeader property is set to true.
The day names are based on the server's local settings.
The following code example demonstrates how to use the DayNameFormat property to specify that days of the week are displayed in full.
<%@ 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="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>
Available since 1.1