Latest web development tutorials

ASP.NET CalendarDay IsToday property

CalendarDay control CalendarDay control

Definition and Usage

IsToday property is used to obtain the date is current date.

If the date is the current date, the property returns "TRUE", otherwise "FALSE".


Examples

The following example shows the selected date is the current date:

<script runat="server">
Sub DaySelect(obj As Object, e As DayRenderEventArgs)
If e.Day.IsSelected Then
If e.Day.IsToday = "TRUE" Then
Label1.Text = "YES"
Else
Label1.Text = "NO"
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