System.Web.UI.WebControls Namespace Calendar Class
Sets or retrieves the text shown for the previous month navigation hyperlink if the ShowNextPrevMonth property is set to true.
[ VB ]
Public Property PrevMonthText As String
[ C# ]
public string PrevMonthText {get; set;}
[ C++ ]
public: __property String* get_PrevMonthText ( );
public: __property void set_PrevMonthText ( String* );
[ JScript ]
public function get PrevMonthText ( ) : String;
public function set PrevMonthText ( String );
The text shown for the previous month navigation hyperlink. The default value is '<'
.
Need to determine the relationship between this, NextPrevFormat, ShowTitle, ShowNextPrevMonth, etc.
The following example demonstrates how to set the NextMonthText property to the '<'
character.
<asp:Calendar id = "myCalendar" runat = "server"
PrevMonthText='<'/>
Calendar Members