Gets or sets the value that will be display in the bottom status bar of the web browser.
Default value is {0}.
The {0} value is replaced with the formatted value of the currently hovered day. Can contain other characters to make up custom message. See example below:
[Visual Basic, C#] The following example demonstrates how to use the DayStatusBarText property to show a custom message in the browser status bar.
[Visual Basic]
<%@ Page Language="VB" AutoEventWireup="true" %>
<%@ Register TagPrefix="bdp" Namespace="BasicFrame.WebControls" Assembly="BasicFrame.WebControls.BasicDatePicker" %>
<html>
<head>
<title>Basic Date Picker DayStatusBarText Example</title>
</head>
<body>
<form runat="server">
<h3>Basic Date Picker DayStatusBarText Example</h3>
<bdp:BasicDatePicker
ID="BasicDatePicker1"
runat="server"
DayStatusBarText="Current Date: {0}">
</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 DayStatusBarText Example</title>
</head>
<body>
<form runat="server">
<h3>Basic Date Picker DayStatusBarText Example</h3>
<bdp:BasicDatePicker
ID="BasicDatePicker1"
runat="server"
DayStatusBarText="Current Date: {0}">
</bdp:BasicDatePicker>
</form>
</body>
</html>
BasicDatePicker Class | BasicFrame.WebControls Namespace