ASP.NET TableSection 属性

定义和用法

TableSection 属性用于设置或返回 Table 控件中的 TableRow 对象的位置。

使用 TableSection 属性来获取或设置在 Table 控件中放置 TableRow 对象的位置。

语法

  1. <asp:TableRow TableSection="section" runat="server">
  2. Some Content
  3. </asp:TableRow>
属性 描述
section 规定该行所属的表格部分。 可能的值: - TableHeader - 表头行 - TableBody - 默认。表的正文 - TableFooter - 脚注行

实例

下面的例子设置了 TableRow 控件的 TableSection 属性:

  1. <form runat="server">
  2. <asp:table id="Table1" runat="server" GridLines="Both">
  3.  
  4. <asp:TableRow TableSection="TableHeader">
  5. <asp:TableCell>Header</asp:TableCell>
  6. </asp:TableRow>
  7.  
  8. </asp:table>
  9. </form>

实例

  • 规定 TableRow 控件的 TableSection