ASP question - FrontPage 2003 - Access 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm reading fields from an Access 2003 database and displaying them on a Web
Page. One problem though - one of the Access fields has a url link in it.
What is the Asp command to display the field on a Web page as a URL? Thanks
for any replies.
 
Assuming that rs.link is the URL and rs.linktext is the text you want for
the link, just use the following.

<a href='<% =rs.link %>'><% =rs.linktext %></a>
 
Back
Top