Allow selection of Previous Month Days which are displayed before the first day of the current visible month.
Default value is true. If false, selection of previous month days are disabled.
Use the SelectablePrevMonthDays property to specify whether the previous month days are selectable in the calendar.
The appearance of the previous month days can be customized by using the OtherMonthDayStyle property.
[Visual Basic, C#] The following example demonstrates how to use the SelectablePrevMonthDays property to disable selection of previous month days.
[Visual Basic]
<%@ Page Language="VB" AutoEventWireup="True" %>
<%@ Register TagPrefix="bdp" Namespace="BasicFrame.WebControls" Assembly="BasicFrame.WebControls.BasicDatePicker" %>
<html>
<head>
<title>Basic Date Picker SelectablePrevMonthDays Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Basic Date Picker SelectablePrevMonthDays Example</h3>
<BDP:BasicDatePicker
id="BasicDatePicker1"
runat="server"
SelectablePrevMonthDays="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 SelectablePrevMonthDays Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Basic Date Picker SelectablePrevMonthDays Example</h3>
<BDP:BasicDatePicker
id="BasicDatePicker1"
runat="server"
SelectablePrevMonthDays="False">
</BDP:BasicDatePicker>
</form>
</body>
</html>
BasicDatePicker Class | BasicFrame.WebControls Namespace | SelectableNextMonthDays | ShowDaysInNextMonth | ShowDaysInPrevMonth | ShowNextPrevMonth