hi,
<% Dim i As Integer = 0%>
<% For i = 0 To 5%>
<asp:Button runat="server" Text="Station<%=i %>" />
<% Next%>
I'm tring to display several buttons in loop but I am not able to set Text values of each button different. Every button displays Station <%=i%> instead of Station 1, Station 2 and so on.
What m i doing wrong?
Thanks.