Calendar.VisibleDate Property
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in System.Web.dll)
<asp:Calendar VisibleDate="DateTime" />
Property Value
Type: System.DateTimeA System.DateTime that specifies the month to display on the Calendar. The default value is DateTime.MinValue, which displays the month that contains the date specified by TodaysDate.
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.
| Topic | Location |
|---|---|
| How to: Control Month Navigation in a Calendar Web Server Control | Building ASP .NET Web Applications |
| How to: Control Month Navigation in a Calendar Web Server Control | Building ASP .NET Web Applications |
The following code example demonstrates how to use the VisibleDate property to programmatically set the value that determines the month that is displayed in the Calendar control.
<%@ Page Language="C#" AutoEventWireup="True" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>Calendar Example</title> <script language="C#" runat="server"> void ButtonClick(Object sender, EventArgs e) { Calendar1.VisibleDate = new DateTime(Calendar1.TodaysDate.Year, DropList1.SelectedIndex + 1, 1); Label1.Text = "The VisibleDate property is " + Calendar1.VisibleDate.ToShortDateString(); } </script> </head> <body> <form id="form1" runat="server"> <h3>Calendar Example</h3> <asp:Calendar id="Calendar1" runat="server" SelectionMode="None" ShowGridLines="True"> <SelectedDayStyle BackColor="Yellow" ForeColor="Red"> </SelectedDayStyle> </asp:Calendar> <hr /><br /> Select the month to display: <br /> <asp:DropDownList id="DropList1" runat="server"> <asp:ListItem>1</asp:ListItem> <asp:ListItem>2</asp:ListItem> <asp:ListItem>3</asp:ListItem> <asp:ListItem>4</asp:ListItem> <asp:ListItem>5</asp:ListItem> <asp:ListItem>6</asp:ListItem> <asp:ListItem>7</asp:ListItem> <asp:ListItem>8</asp:ListItem> <asp:ListItem>9</asp:ListItem> <asp:ListItem>10</asp:ListItem> <asp:ListItem>11</asp:ListItem> <asp:ListItem>12</asp:ListItem> </asp:DropDownList> <asp:Button id="Button1" Text="Submit" OnClick="ButtonClick" runat="server" /> <br /><br /> <asp:Label id="Label1" runat="server"/> </form> </body> </html>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.