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