Latest web development tutorials

ASP.NET Calendar NextMonthText property

Calendar Control Calendar Control

Definition and Usage

NextMonthText attribute text link next month's calendar is displayed for specifying.

grammar

<asp:Calendar NextMonthText="string" runat="server" />

属性 描述
string 规定日历中下一月的链接所显示的文本。默认值是 ">"。


Examples

The following example shows NextMonthText is set to "Next" calendar:

<form runat="server">
<asp:Calendar id="cal1" runat="server" NextMonthText="Next" />
</form>

The demonstration >>

Calendar Control Calendar Control