When an asp page loads how do I display the text from a DB as a hyperlink to another page?
Please help.
thanks in advance.
Printable View
When an asp page loads how do I display the text from a DB as a hyperlink to another page?
Please help.
thanks in advance.
Well, assuming your storing the names of pages in the database:
something like this would work:
Code:<A href="<%=rs.fields("url_field")%>"><%=rs.fields("url_desc")%></A>
thanks that's all the suggestion I needed. It is what I came up with after all.