DayNameFormat Enumeration (System.Web.UI.WebControls)

Switch View :
ScriptFree
.NET Framework Class Library
DayNameFormat Enumeration

Specifies the display format for the days of the week on a Calendar control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
Public Enumeration DayNameFormat
C#
public enum DayNameFormat
Visual C++
public enum class DayNameFormat
F#
type DayNameFormat
Members

Member name Description
Full The days of the week displayed in full format. For example, Monday.
Short The days of the week displayed in abbreviated format. For example, Mon represents Monday.
FirstLetter The days of the week displayed with just the first letter. For example, M represents Monday.
FirstTwoLetters The days of the week displayed with just the first two letters. For example, Mo represents Monday.
Shortest The days of the week displayed in the shortest abbreviation format possible for the current culture.
Remarks

The DayNameFormat enumeration represents the display formats for the days of the week in a Calendar control.

Note Note

In some cultures, DayNameFormat.FirstLetter and DayNameFormat.FirstTwoLetter display identical values for one or more days of the week. In these cultures, consider using DayNameFormat.Shortest, which displays the shortest abbreviation possible without using identical abbreviations.

Examples

The following code example shows how to specify a format for the format for the days of the week in a Calendar control.

Visual Basic

<%@ 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>
 


C#

<%@ 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>
 


Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference