Calendar.ShowTitle Property
.NET Framework (current version)
Gets or sets a value indicating whether the title section is displayed.
Assembly: System.Web (in System.Web.dll)
Use the ShowTitle property to specify whether the title section is displayed.
Note |
|---|
Hiding the title section also hides the next and previous month navigation controls. |
The appearance of the title section can be customized by using the TitleStyle property.
The following code example demonstrates how to use the ShowTitle property to hide the title header.
<%@ 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 title section of the Calendar control // depending on the state of the ShowTitleCheckBox CheckBox // control. if (ShowTitleCheckBox.Checked) { Calendar1.ShowTitle = true; } else { Calendar1.ShowTitle = false; } } </script> <head runat="server"> <title> Calendar ShowTitle Example </title> </head> <body> <form id="form1" runat="server"> <h3> Calendar ShowTitle Example </h3> Select whether to show or hide the title section. <br /><br /> <asp:Calendar id="Calendar1" ShowTitle="True" runat="server"/> <br /><br /> <asp:CheckBox id="ShowTitleCheckBox" Text="Show/Hide title section" AutoPostBack="True" Checked="True" OnCheckedChanged="Check_Change" runat="server"/> </form> </body> </html>
.NET Framework
Available since 1.1
Available since 1.1
Show:
