System.Web.UI.WebControls Namespace Calendar Class
Sets or retrieves the text shown for the next month navigation hyperlink if the ShowNextPrevMonth property is set to true.
[ VB ]
Public Property NextMonthText As String
[ C# ]
public string NextMonthText {get; set;}
[ C++ ]
public: __property String* get_NextMonthText ( );
public: __property void set_NextMonthText ( String* );
[ JScript ]
public function get NextMonthText ( ) : String;
public function set NextMonthText ( String );
The caption text for the next 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"
NextMonthText='>'/>
Calendar Members