如何使用asp.net动态向表添加行
我想以以下方式生成一个表:
<table>
<tbody>
<tr class="folder" style="-moz-user-select: none;">
<td><div><img src="folder.png"><span>home</span></div></td>
<td class="bytes">Folder</td>
</tr>
<tr class="folder hover" style="-moz-user-select: none;">
<td><div><img src="folder.png"><span>share</span></div></td>
<td class="bytes">Folder</td>
</tr>
</tbody>
</table>
我想根据条目数添加 CS 代码中的行。
I want to generate a table in following fashion :
<table>
<tbody>
<tr class="folder" style="-moz-user-select: none;">
<td><div><img src="folder.png"><span>home</span></div></td>
<td class="bytes">Folder</td>
</tr>
<tr class="folder hover" style="-moz-user-select: none;">
<td><div><img src="folder.png"><span>share</span></div></td>
<td class="bytes">Folder</td>
</tr>
</tbody>
</table>
I want to add the rows from the CS code depending on the number of entries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该考虑使用 Repeater 进行数据显示,而不是“向 html 表添加元素”,这将为您提供干净的 html(完全按照您的要求)。
然后,每次单击时,您都会执行需要执行的操作(代码隐藏)并重新绑定中继器。
希望有帮助。
Instead of "adding elements to html table" you should consider using Repeater for data display, which would give you clean html (exactly as you want).
Then on each click you would do what you need to do (code behind) and rebind the repeater.
Hope that helps.
我同意塞巴斯蒂安的观点,为什么不使用中继器或数据列表来绑定数据。您使用什么来源获取数据?如果您从 SQL 表中提取数据,这里有一篇关于如何入门的非常好的文章。
http://msdn.microsoft.com/en -us/library/aa719636(v=vs.71).aspx
I would agree with Sebastian why not use a repeater or datalist to bind the data. What source are you using to get your data from? If your pulling the data from a SQL table here is a pretty good article on how to get you started.
http://msdn.microsoft.com/en-us/library/aa719636(v=vs.71).aspx