asp:Table does not support these elements.
Update: As jameh's answer reveals, the sentence above is completely wrong: the TableSection
property allows to control
whether a given row goes into the table's header, body or footer.
To elaborate on his answer, it seems you can even achieve this declaratively by setting the TableSection
property in your markup, without code behind:
<asp:Table id="yourId" runat="server">
<asp:TableHeaderRow TableSection="TableHeader">
<!-- ... -->
</asp:TableHeaderRow>
<asp:TableRow>
<!-- 'TableSection' defaults to 'TableRowSection.TableBody'. -->
<!-- ... -->
</asp:TableRow>
<asp:TableRow TableSection="TableFooter">
<!-- ... -->
</asp:TableRow>
</asp:Table>
Original, now moot answer follows:
You might want to try the HtmlTable class instead:
<table id="yourId" runat="server">
<thead>
.
.
.
</thead>
<tbody>
.
.
.
</tbody>
</table>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…