Hi,
I have a list view of favorite websites that was created by ASPrunner pro.
Description Category
Yahoo email
ebay shopping
What is hidden is the url for each description which is stored in a field called website (located in the same table) What I want to be done is be able to hyperlink the Description to the url stores in the website field.
I know the text should be like <a href=" & website & "> with "website" being the URL, but I can't figure out where to places it. I beleive the following text is where the listings are written.
<%
if IsBinaryField(rsData.Fields("Description")) or Format("Description")=FORMAT_DATABASE_FILE then
Response.Write CreateImageControl(rsData, "Description", "")
else
Response.Write ProcessLargeText(GetData(rsData.Fields("Description"), ""))
end if
%>