我在文件后面的代码中添加表格。我想在其中添加标签。
<table id="tbl" runat="server">
<tr>
<th>test</th>
<td>
</td>
</tr>
</table>
我不知道如何通过代码添加。
那么谁能告诉我如何添加标签?
我在文件后面的代码中添加表格。我想在其中添加标签。
<table id="tbl" runat="server">
<tr>
<th>test</th>
<td>
</td>
</tr>
</table>
我不知道如何通过代码添加。
那么谁能告诉我如何添加标签?
HtmlTable t = tbl; //just to make it clear your table is an HtmlTable
tbl.Rows[0].Cells.Add(new HtmlTableCell("th")); //adds an emtpy cell to the first row with th tagname
Table t = new Table();
TableHeaderRow th = new TableHeaderRow();
th.Controls.Add(new LiteralControl("test"));
t.Controls.Add(th);
containerControlForTheTable.Controls.Add(t);
Dim tr As New HtmlTableRow
tr.Cells.Add(New HtmlTableCell("th"))
yourtable.Rows.Add(tr)