Calendar.SelectMonthText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定顯示於選取器欄位中月份選取項目的文字。
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
屬性值
顯示於選取器欄位中月份選取項目的文字。 默認值為 ">>"
,其會轉譯為兩個大於符號的符號 (>>) 。
- 屬性
範例
下列程式代碼範例示範如何使用 SelectMonthText 屬性來提供月份選取專案的自定義文字。
<%@ 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>
備註
SelectMonthText使用 屬性,為選取器數據行中的月份選取專案提供自定義文字。
注意
此屬性不會自動編碼為 HTML。 除非您希望將字元視為 HTML,否則您必須將特殊字元轉換成適當的 HTML 值。 例如,若要明確顯示大於符號 () > ,您必須使用 值 >
。
因為這個屬性不會自動編碼為 HTML,所以可以指定屬性的 SelectMonthText HTML 標記。 例如,如果您想要顯示下個月導覽控件的影像,您可以將此屬性設定為包含元素的 <img>
表達式。
只有當 屬性設定為 CalendarSelectionMode.DayWeekMonth
時,SelectionMode才會套用這個屬性。
當設定時,此屬性的值可以使用設計工具自動儲存到資源檔。 如需詳細資訊,請參閱 LocalizableAttribute 和 ASP.NET 全球化和當地語系化。