Hello,
I have a series of variables ending with a number and am trying (unsuccesfuly) to put them in a table using For Next loop.
the code looks like this:
<%
v1 = "text_1"
v2 = "text_2"
v3 = "text_3"
%>
<table border="1">
<%
For x = 1 To 3
response.write("<tr ><td>text "&x&"</td><td>"&v+x&" </td></tr>")
next
%>
</table>
Any help much appreciated.
minbor