Hi all,
I have a very simple code that for the life of me doesn't let me do a simple a href:
Can someone show/explain to me how to have the RS("author"
show the author's name as a link so when I click the author's name I'll be going to a descriptive author's page?
Thanks much! -Tivoli0
I have a very simple code that for the life of me doesn't let me do a simple a href:
Code:
-------------- snip -----------------
<%Do while not RS.EOF%>
<tr BGCOLOR="#CCFFCC">
<td ALIGN="left" valign="top"><%= RS("title")%></td>
<td ALIGN="left" valign="top"><%= RS("body")%></td>
<td ALIGN="left" valign="top"><a href=<%=RS("author")%>></a></td>
</tr>
<%RS.Movenext
Loop
%>
--------------- snip -----------------
Thanks much! -Tivoli0