让我们说在aspx页面中我有一个for循环,在for循环中我想创建元素。如何为它们动态生成id。
例如,如果我有:
<div>
<% Foreach (item in itemCollection) { %>
{
<table>
<tr>
here I want to create td elements with id as reconText1 reconText2...the numbers at the end I get by incrementing the index.
</tr>
</table>
}
</div>
答案 0 :(得分:3)
您可以使用带有索引的for
循环或带有foreach
的单独索引变量:
<% int i = 1; %>
<% foreach (item in itemCollection) { %>
<tr>
<td id="reconText<%= i %>">...</td>
</tr>
<% i++; %>
<% } %>