I am making a links page the details that make this page are all in a database.
When I make the link I make use of fields called
url
siteTitle
details
Response.Write "<span class='dblink'>" & recordset("url") & recordset("siteTitle") & "</span><br /><span class='dblinkdetails'>" & recordset("details") & "</span> " & recordset("subCat")
|
I am having problems in getting the siteTitle to become clickable I have included some code above which displays the url, siteTitle and details, however I am now stuck what I want to do is have the siteTitle and details on display only with the URL in a href tag so that that the user can click the siteTitle and visit the site.
Edited by pjb007 - 04 October 2006 at 5:41pm