-
Linkproblems
My problem is that I want to read from a file and print the thing that has been readen like a link.
<a href="page.asp" target="site"><%=rs("alias")%></a>
Now I want the page to see what link that has been clicked on, what rs("alias") is. Can this be done or can I write a line like this:
for i=1 to 4
<a href="page.asp" target="site" name=i><%rs("alias")%></a>
next
where i is a number that raises every time I write the line
-
You want to pass page.asp variables?
Then you would do:
Code:
Do Until rs.EOF
<a href="page.asp?alias=" <%rs("alias")%> target="site" name=i><%rs("alias")%></a>
rs.MoveNext
Loop
-
-