waarbs
05-04-2006, 12:10 PM
In my site we have a search form that displays records from a database. One of the fields contains web links, which I would like to display as html web links in the asp results page. I am not sure how to get this to work. Any ideas anyone?
The search results page can be found at http://www.munzamedia.co.uk/trip/courseSearch.asp?level=PhD&university=Derby&Submit=Find+a+course
My code to display the result as a link, currently looks like this:
<tr>
<td><strong>Web Link : </strong>
<a href = "
<%
Response.Write(RSCustomerList("website"))
%>
">Link</a>
</a>
<hr align="left" noshade width = "400" color = "#FD5583">
</td>
</tr>
The search results page can be found at http://www.munzamedia.co.uk/trip/courseSearch.asp?level=PhD&university=Derby&Submit=Find+a+course
My code to display the result as a link, currently looks like this:
<tr>
<td><strong>Web Link : </strong>
<a href = "
<%
Response.Write(RSCustomerList("website"))
%>
">Link</a>
</a>
<hr align="left" noshade width = "400" color = "#FD5583">
</td>
</tr>