Allow selection of WeekEndDays.
Default value is true. If false, selection of weekend days is disabled.
Use the SelectableWeekendDays property to specify whether the weekend days are selectable in the calendar.
The appearance of the weekend days can be customized by using the WeekendDayStyle property.
[Visual Basic, C#] The following example demonstrates how to use the SelectableWeekendDays property to disable selection of weekend days.
[Visual Basic]
<%@ Page Language="VB" AutoEventWireup="True" %>
<%@ Register TagPrefix="bdp" Namespace="BasicFrame.WebControls" Assembly="BasicFrame.WebControls.BasicDatePicker" %>
<html>
<head>
<title>Basic Date Picker SelectableWeekendDays Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Basic Date Picker SelectableWeekendDays Example</h3>
<BDP:BasicDatePicker
id="BasicDatePicker1"
runat="server"
SelectableWeekendDays="False">
</BDP:BasicDatePicker>
</form>
</body>
</html>
[C#]
<%@ Page Language="C#" AutoEventWireup="True" %>
<%@ Register TagPrefix="bdp" Namespace="BasicFrame.WebControls" Assembly="BasicFrame.WebControls.BasicDatePicker" %>
<html>
<head>
<title>Basic Date Picker SelectableWeekendDays Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Basic Date Picker SelectableWeekendDays Example</h3>
<BDP:BasicDatePicker
id="BasicDatePicker1"
runat="server"
SelectableWeekendDays="False">
</BDP:BasicDatePicker>
</form>
</body>
</html>
BasicDatePicker Class | BasicFrame.WebControls Namespace