System.Web.UI.WebControls Namespace Calendar Class
Sets or retrieves the date that specifies the month to display on the Calendar control.
Script |
Calendar.VisibleDate [ = System.DateTime ] |
This property can only be used programmatically; it cannot be set when declaring the control.
A System.DateTime object that specifies the month to display on the Calendar control. The default value is DateTime.MinValue, which displays the month that contains the date specified by the TodaysDate property.
Use the VisibleDate property to programmatically set the month to display on the Calendar control. The specified date can be any date in the month you want to display, although it is common to use the first date in the month. This property is set using a System.DateTime object.
The VisibleDate property is updated before the VisibleMonthChanged event is raised. You can provide a custom onVisibleMonthChanged event handler to set the VisibleDate property and override the automatically generated value.
The following example demonstrates how to use the VisibleDate property to programmatically set the value that determines the month that is displayed in the Calendar control.
Show me
Calendar Members