ASP.NET DayHeaderStyle Property

Definition and Usage

The DayHeaderStyle property is used to set or return the style properties of a specific part of a day in the week.

Syntax

<asp:Calendar runat="server">
<DayHeaderStyle style="value" />
</asp:Calendar>

Or:

<asp:Calendar runat="server" DayHeaderStyle-style="value" />
Property Description
style Specify the style to be set. Refer to the Style control to view possible styles and their values.
value Specify the value of the specified style.

Example

Example 1

The following example shows one way to set the DayHeaderStyle in the calendar:

<form runat="server">
<asp:Calendar id="cal1" runat="server">
<DayHeaderStyle ForeColor="#FF0000" />
</asp:Calendar>
</form>

Example 2

The following example shows another way to set the DayHeaderStyle in the calendar:

<form runat="server">
<asp:Calendar id="cal2" runat="server"> 
DayHeaderStyle-ForeColor="#FF0000" />
</form>

Example

Set the DayHeaderStyle Property of the Calendar Control
Set the DayHeaderStyle Property of the Calendar Control (with declaration and script)