Latest web development tutorials

ASP.NET CalendarDay IsWeekend property

CalendarDay control CalendarDay control

Definition and Usage

IsWeekend property is used to obtain the date if it is a Saturday or Sunday.

If the date on the weekends, this property returns "TRUE", otherwise "FALSE".


Examples

The following example shows the selected date is the weekend:

<script runat="server">
Sub DaySelect(obj As Object, e As DayRenderEventArgs)
If e.Day.IsSelected Then
If e.Day.IsWeekend = "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 a weekend:
<asp:Label id="Label1" runat="server"/>
</form>

The demonstration >>

CalendarDay control CalendarDay control