Calendar.ShowNextPrevMonth Property
Gets or sets a value indicating whether the Calendar control displays the next and previous month navigation elements in the title section.
Assembly: System.Web (in System.Web.dll)
Use the ShowNextPrevMonth property to specify whether the next and previous month navigation elements are displayed in the title section.
The appearance of the next and previous month navigation controls can be customized by using the NextPrevStyle property.
The following code example demonstrates how to use the ShowNextPrevMonth property to hide the next and previous month navigation controls in the title section.
<%@ 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> </head> <body> <form id="form1" runat="server"> <h3>Calendar Example</h3> <asp:Calendar id="calendar1" runat="server" ShowNextPrevMonth="False"/> </form> </body> </html>
<%@ 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" > <script runat="server" > void Check_Change(Object sender, EventArgs e) { // Show or hide the navigation controls to the next and previous // months in the Calendar control depending on the state of the // ShowNextPrevMonthCheckBox CheckBox control. if (ShowNextPrevMonthCheckBox.Checked) { Calendar1.ShowNextPrevMonth = true; } else { Calendar1.ShowNextPrevMonth = false; } } </script> <head runat="server"> <title> Calendar ShowNextPrevMonth Example </title> </head> <body> <form id="form1" runat="server"> <h3> Calendar ShowNextPrevMonth Example </h3> Select whether to show or hide the next and previous month navigation controls. <br /><br /> <asp:Calendar id="Calendar1" ShowTitle="True" runat="server"/> <br /><br /> <asp:CheckBox id="ShowNextPrevMonthCheckBox" Text="Show/Hide the navigation controls." AutoPostBack="True" Checked="True" OnCheckedChanged="Check_Change" runat="server"/> </form> </body> </html>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.