Forums
This topic is locked
Clickable links in a form text field
07 Oct 2002 23:08:22 J P posted:
Hi,What tags do I need to use when I need a clickable link shown when entering text into a form text field.
ASP & Access 2000 in use
eg if I wanted a link to appear in this post message I am typing now - what tags would I need to make the following link clickable www.udzone.com
Replies
Replied 08 Oct 2002 11:24:38
08 Oct 2002 11:24:38 Stuart Harland replied:
you'd need to display the link (say: www.yahoo.com is stored in rs("linkField"
this way:
<b>< a href="< %rs("linkField"
% >">< %rs("linkField"
% >< / a></b>
Then you get: www.yahoo.com
where the link is the text and the actual hyperlink.
Take out the extra spaces I entered...in the anchor and the Vb code blocks.
Hope this helps and was what you where looking for,
Stuart
********************
wheatNOTmeat

<b>< a href="< %rs("linkField"


Then you get: www.yahoo.com
where the link is the text and the actual hyperlink.
Take out the extra spaces I entered...in the anchor and the Vb code blocks.
Hope this helps and was what you where looking for,
Stuart
********************
wheatNOTmeat