2011-10-11 54 views
2

讓我們說一個aspx頁面我有一個for循環,並且在for循環中我想創建元素。我怎樣才能爲他們動態生成id。HTML ELements的動態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> 

回答

3

你可以使用一個for循環與指數或單獨的索引變量,foreach

<% int i = 1; %> 
<% foreach (item in itemCollection) { %> 
    <tr> 
     <td id="reconText<%= i %>">...</td> 
    </tr> 
    <% i++; %> 
<% } %>