ASP.NET Caption 属性

定义和用法

Caption 属性用于为 Table 控件设置或返回显示为标题的文本。

语法

  1. <asp:Table Caption="string" runat="server">
  2. Some Content
  3. </asp:Table>
属性 描述
string 显示为表格标题的文本。

实例

下面的例子为 Table 控件设置了 Caption:

  1. <form runat="server">
  2. <asp:Table id="tab1" runat="server" Caption="Table Example">
  3. <asp:TableRow>
  4. <asp:TableCell>
  5. Hello!
  6. </asp:TableCell>
  7. </asp:TableRow>
  8. </asp:Table>
  9. </form>

实例

  • 为 Table 控件设置 Caption 属性