Say if I have the following server control in my page body
Code:
<%
For j = 0 To ArrayList.GetUpperBound(0)
%>
<span id="Name" runat="server"></span> <br />
<% Next %>
I can iterate thru them and create multiple sets of the above control, but how do I change the ID so that for example, ID for the first one is Name1 and then Name2 ...so on?
|