Well, I have this asp page that builds list of links.
I used onclick event in order to send the url variable to a function that opens the link in a new window, etc.
After opening it once, all 1700 links look as visited links, and I don't know how come.
Is there a way to prevent it?
The code:
Response.Write("<td><A href='javascript:void(0);' onclick=""winOpen('" & url &"')"">linkIt</a></td>)"
Any ideas? Thanks in advance
I used onclick event in order to send the url variable to a function that opens the link in a new window, etc.
After opening it once, all 1700 links look as visited links, and I don't know how come.
Is there a way to prevent it?
The code:
Response.Write("<td><A href='javascript:void(0);' onclick=""winOpen('" & url &"')"">linkIt</a></td>)"
Any ideas? Thanks in advance