3

我在文件后面的代码中添加表格。我想在其中添加标签。

<table id="tbl" runat="server">
   <tr>
        <th>test</th>
       <td>
       </td>
   </tr>
</table>

我不知道如何通过代码添加。

那么谁能告诉我如何添加标签?

4

3 回答 3

5
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
于 2012-04-18T11:41:36.003 回答
3
Table t = new Table();
TableHeaderRow th = new TableHeaderRow();
th.Controls.Add(new LiteralControl("test"));
t.Controls.Add(th);
containerControlForTheTable.Controls.Add(t);
于 2012-04-18T11:47:18.530 回答
1
Dim tr As New HtmlTableRow
tr.Cells.Add(New HtmlTableCell("th"))
yourtable.Rows.Add(tr)
于 2018-10-15T08:41:51.730 回答