Gets or sets a value indicating whether the BasicDatePicker is enabled. if Enabled = false, TextBox readonly attribute will be set to readonly and Image Button will be set to Disabled.
Default value is true, which indicated that the date picker will be enabled.
[Visual Basic, C#] The following example demonstrates how to use the Enabled property to disable the date picker.
[Visual Basic]
<%@ Page Language="VB" AutoEventWireup="True" %>
<%@ Register TagPrefix="bdp" Namespace="BasicFrame.WebControls" Assembly="BasicFrame.WebControls.BasicDatePicker" %>
<html>
<head>
<title>Basic Date Picker Enabled Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Basic Date Picker Enabled Example</h3>
<BDP:BasicDatePicker id="BasicDatePicker1" Enabled="False" runat="server"></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 Enabled Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>Basic Date Picker Enabled Example</h3>
<BDP:BasicDatePicker id="BasicDatePicker1" Enabled="False" runat="server"></BDP:BasicDatePicker>
</form>
</body>
</html>
BasicDatePicker Class | BasicFrame.WebControls Namespace