ASP.NET TableRow TableSection 属性
定义和用法
TableSection 属性用于设置或返回 Table 控件中的 TableRow 对象的位置。
使用 TableSection 属性来获取或设置在 Table 控件中放置 TableRow 对象的位置。
语法
<asp:TableRow TableSection="section" runat="server">
Some Content
</asp:TableRow>
属性 | 描述 |
---|---|
section | 规定该行所属的表格部分。 可能的值:
|
下面的实例设置了 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:table id="Table1" runat="server" GridLines="Both">
<asp:TableRow TableSection="TableHeader">
<asp:TableCell>Header</asp:TableCell>
</asp:TableRow>
</asp:table>
</form>
演示实例 »
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com