ASP question - FrontPage 2003 - Access 2003

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.
 
C

Curt J Raddatz

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top