Latest web development tutorials

ASP.NET CalendarDay IsSelected property

CalendarDay control CalendarDay control

Definition and Usage

IsSelected Dates for acquiring property is selected in the Calendar control.

If the date is selected in the Calendar control, the property returns "TRUE", otherwise "FALSE".


Examples

The following example shows 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>

The demonstration >>

CalendarDay control CalendarDay control