|
-
Oct 16th, 2001, 12:43 PM
#1
Thread Starter
Lively Member
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
-
Oct 16th, 2001, 01:05 PM
#2
Frenzied Member
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
-
Oct 16th, 2001, 03:45 PM
#3
Thread Starter
Lively Member
Thank you !!
-
Oct 16th, 2001, 04:58 PM
#4
Frenzied Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|