ASP.NET DayNameFormat Property


Calendar Control Reference Complete Calendar Control Reference

Definition and Usage

The DayNameFormat property is used to set the format of the weekday names in the calendar.

Syntax

<asp:Calendar DayNameFormat="format" runat="server" />

Attribute Description
format Specifies the format for displaying the names of the days.

Possible values:

  • FirstLetter
  • FirstTwoLetters
  • Full
  • Short


Example

The following example shows a calendar with the full day name format:

<form runat="server">
<asp:Calendar id="cal1" runat="server" DayNameFormat="Full" />
</form>

Show example »

Calendar Control Reference Complete Calendar Control Reference

Color Picker

colorpicker