Table 控件
定义和用法
Caption 属性用于为 Table 控件获取或设置显示为标题的文本。
语法
<asp:Table Caption="string" runat="server">
Some Content
</asp:Table>
?
实例
下面的实例为 Table 控件设置了 Caption:
<form runat="server">
<asp:Table id="tab1" runat="server"
Caption="Table 实例">
<asp:TableRow>
<asp:TableCell>
Hello!
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
Table 控件