ASP.NET Caption 属性

定义和用法

Caption 属性用于设置或返回显示为日历标题的文本。

语法

  1. <asp:Calendar Caption="text" runat="server" />
属性 描述
text 显示为标题日历的文本。

实例

下面的例子设置了日历中的 Caption 属性:

  1. <form runat="server">
  2. <asp:Calendar id="cal1" runat="server" Caption="This is a Caption text" />
  3. </form>

实例

  • 设置 Calendar 控件中的 Caption 属性