ASP.NET DayStyle Property
Definition and Usage
The DayStyle property is used to set or return the style of the date in the calendar.
Syntax
<asp:Calendar runat="server"> <DayStyle style="value" /> </asp:Calendar>
Or:
<asp:Calendar runat="server" DayStyle-style="value" />
Property | Description |
---|---|
style | Specify the style to be set. See Style Control, to view the possible styles and their values. |
value | Specify the value of the specified style. |
Example
Example 1
The following example shows one method of setting DayStyle in the calendar:
<form runat="server"> <asp:Calendar id="cal1" runat="server"> <DayStyle ForeColor="#FF0000" /> </asp:Calendar> </form>
Example 2
The following example shows another method of setting DayStyle in the calendar:
<form runat="server"> <asp:Calendar id="cal2" runat="server" DayStyle-ForeColor="#FF0000" /> </form>
Example
- Set the DayStyle of Calendar Control
- Set the DayStyle of Calendar Control (with declaration and script)