Calendar.SelectMonthText Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the text displayed for the month selection element in the selector column.
public:
property System::String ^ SelectMonthText { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string SelectMonthText { get; set; }
public string SelectMonthText { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.SelectMonthText : string with get, set
member this.SelectMonthText : string with get, set
Public Property SelectMonthText As String
Property Value
The text displayed for the month selection element in the selector column. The default value is ">>"
, which is rendered as two greater than signs (>>).
- Attributes
Examples
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>
<%@ Page Language="VB" 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>
Remarks
Use the SelectMonthText property to provide custom text for the month selection element in the selector column.
Note
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.