Calendar for ASP.NET Web Forms
Selecting Calendar Month
Task-Based Help > Selection Tasks > Selecting Calendar Month

To enable calendar month selection, set the month value to true for the SelectionMode property and the ShowWeekNumbers property to true like the following:

In Design View:

  1. Add a C1Calendar to your Web form.
  2. In C1Calendar's Properties window, set the ShowWeekNumbers property to True.
  3. In C1Calendar's Properties window, expand the node for the SelectionMode property and set Month to True.

In Source View:

To write code in Source View

<cc1:C1Calendar ID="C1Calendar1" runat="server" ShowWeekNumbers="True">
        <SelectionMode Month="True" />
    </cc1:C1Calendar>

This topic illustrates the following:

The MonthSelectorImage appears in the upper left corner of the month view. The month selector selects all of the days of the month when the mouse cursor is placed over it.

See Also