ASP.NET TableRow TableSection 属性

返回上一级

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

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

语法

<asp:TableRow TableSection="section" runat="server">Some Content</asp:TableRow>
属性 描述
section 规定该行所属的表格部分

可能的值:TableHeader - 表头行
TableBody - 默认。表的正文
TableFooter - 脚注行

范例

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

<form runat="server">
<asp:table id="Table1" runat="server" GridLines="Both">
<asp:TableRow TableSection="TableHeader">
<asp:TableCell>Header</asp:TableCell>
</asp:TableRow>
</asp:table>
</form>

返回上一级

ASP.NET 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.