Calendar.SelectMonthText Property
Gets or sets the text displayed for the month selection element in the selector column.
Assembly: System.Web (in System.Web.dll)
Use the SelectMonthText property to provide custom text for the month selection element in the selector column.
![]() |
---|
This property does not automatically encode to HTML. You need to convert special characters to the appropriate HTML value, unless you want the characters to be treated as HTML. For example, to explicitly display the greater than symbol (>), you must use the value >. |
Because this property does not automatically encode to HTML, it is possible to specify an HTML tag for the SelectMonthText property. For example, if you want to display an image for the next month navigation control, you can set this property to an expression that contains an <img> element.
This property applies only if the SelectionMode property is set to CalendarSelectionMode.DayWeekMonth.
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.
Topic | Location |
---|---|
How to: Control User Date Selection in a Calendar Web Server Control | Building ASP .NET Web Applications |
How to: Control User Date Selection in a Calendar Web Server Control | Building ASP .NET Web Applications |
The following code example demonstrates how to use the SelectMonthText property to provide custom text for the month selection element.
<%@ 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" SelectionMode="DayWeekMonth" SelectMonthText="<*>" SelectWeekText="->"/> </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.