Calendar.PrevMonthText 属性

定义

获取或设置为前一月导航控件显示的文本。

public:
 property System::String ^ PrevMonthText { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string PrevMonthText { get; set; }
public string PrevMonthText { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.PrevMonthText : string with get, set
member this.PrevMonthText : string with get, set
Public Property PrevMonthText As String

属性值

前一月导航控件的标题文本。 默认值 "&lt;"为 ,它呈现为小于符号 (<) 。

属性

示例

下面的代码示例演示如何使用 PrevMonthText 属性指定上个月导航控件的自定义文本。

<%@ 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"
           NextMonthText="Next"
           PrevMonthText="Prev"/>
            
   </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"
           NextMonthText="Next"
           PrevMonthText="Prev"/>
            
   </form>
        

</body>
</html>

注解

PrevMonthText使用 属性可为上个月导航控件提供自定义文本。 此属性通常与 属性一起使用, NextMonthText 以提供一组自定义导航控件。

注意

此属性不会自动编码为 HTML。 需要将特殊字符转换为相应的 HTML 值,除非希望将字符视为 HTML。 例如,若要显式显示大于符号 (>) ,必须使用值 &gt;

由于此属性不会自动编码为 HTML,因此可以指定属性的 PrevMonthText HTML 标记。 例如,如果要显示下个月导航控件的图像,可以将此属性设置为包含 元素的 <img> 表达式。

仅当 属性设置为 true时,ShowNextPrevMonth此属性才适用。

设置此属性的值后,可以使用设计器工具自动保存到资源文件。 有关详细信息,请参阅 LocalizableAttributeASP.NET 全球化和本地化

适用于

另请参阅