ASP.NET IsSelected Property
Definition and Usage
The IsSelected property is used to set whether the date is selected in the calendar control.
If the date is selected in the Calendar control, it is true; otherwise, it is false.
Example
The following example shows whether the selected date is in the current month:
<script runat="server"> Sub DaySelect(obj As Object, e As DayRenderEventArgs) If e.Day.IsSelected Then If e.Day.IsOtherMonth = "TRUE" Then Label1.Text = "NO" Else Label1.Text = "YES" End If End If End Sub </script> <form runat="server"> <asp:Calendar id="cal1" runat="server" OnDayRender="DaySelect"/> The selected date is in the current month: <asp:Label id="Label1" runat="server"/> </form>
Example
- Use IsOtherMonth and IsSelected to display whether the date is in the current month