我在我的代码中动态添加表。我想在我的代码隐藏文件中使用编码添加它。我的代码如下:
<table>
<tr>
<td class="what-to-expect">
<a href="#TB_inline?height=200&width=300&inlineId=myOnPageContent" title="add a caption to title attribute" class="thickbox">?</a>
</td>
</tr>
</table>
谁能告诉我如何通过代码添加它?
从注释中添加的代码
HtmlTableRow trContent = new HtmlTableRow();
HtmlTableCell cell1 = new HtmlTableCell();
cell1.InnerText = SomeTextHere;
trContent.Cells.Add(cell1)
提前致谢。