ASP.NET FirstDayOfWeek Property


Calendar Control Reference Complete Calendar Control Reference

Definition and Usage

The FirstDayOfWeek property is used to specify what day should be the first day of the week in the calendar.

Syntax

<asp:Calendar FirstDayOfWeek="day" runat="server" />

Attribute Description
day Specifies the first day of the week in the calendar.

Possible values:

  • Default
  • Monday
  • Tuesday
  • Wednesday
  • Thursday
  • Friday
  • Saturday
  • Sunday


Example

The following example shows a calendar with Wednesday set as the first day of the week:

<form runat="server">
<asp:Calendar id="cal1" runat="server" FirstDayOfWeek="Wednesday" />
</form>

Show example »

Calendar Control Reference Complete Calendar Control Reference

Color Picker

colorpicker