我想使用
这是我在 listOfPeople.aspx 上的代码:
<table id="listOfPeople" runat="server">
<tr id="rowOfPerson" runat="server">
<td id="person" runat="server">name of a person</td>
</tr>
</table>
我想重复通过 c# 列出人员列表:
<table>
<tr>
<td>Charles Bell</td>
</tr>
<tr>
<td>Jason Mc Allister</td>
</tr>
<tr>
<td>Mathew Anderson</td>
</tr>
</table>
我可以在 listOfPerson.aspx.cs 上看到“rowOfPerson”,但我不知道如何创建新行。谢谢。