I currently have some ASP that collects links from a database, the code for this is as follows.
Response.Write "<span class='dblink'><a href=""" & recordset("url") &""" title=""" & recordset("siteTitle") &""">" & recordset("siteTitle") & "</a></span><br /><span class='dblinkdetails'>" & recordset("details") & "</span> "
|
I would like links to open in a new window but use SCRICT XHTML so can't use the _blank attribute.
Anyone know another way I had thought using JavaScript would do it,but anyone got any other ideas.
Edited by pjb007 - 29 January 2007 at 10:00pm