【发布时间】:2010-06-11 14:30:13
【问题描述】:
如何从服务器端检索包含以这种方式构造的表 html:
<table id="myTable" >
<tr>
<th> <input type="text" value="name"/></th>
<th> <input type="text" value="quantity" /> </th>
</tr>
<tr>
<th> <input id="name_1" value="phone" /> </th>
<th> <input id="quantity_1" value="15" /> </th>
</tr>
<tr>
<th> <input id="name_2" value="mp3" /> </th>
<th> <input id="quantity_2" value="26" /> </th>
</tr>
</table>
我无法使用<asp:Table> ...,因为由于技术原因,我在这篇帖子之后没有找到解决方案:How to dynamic adding rows into asp.net table?
如何为每一行检索我的表(动态)的内容值。行将在客户端js中添加
谢谢。
【问题讨论】: