Links in Database results

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

Guest

I am trying to display text as a link from one field but use an URL address
from another field as the link.

eg name field = test
infolink = http://www.fred.com

so that when you clink on the word test the link takes you to fred.com

Ruffred
 
In the cell displaying the DBRW fields:

<a href="<%=FP_Field(fp_rs,"infolink")%>"><%=FP_FieldVal(fp_rs,"test")%></a>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


|I am trying to display text as a link from one field but use an URL address
| from another field as the link.
|
| eg name field = test
| infolink = http://www.fred.com
|
| so that when you clink on the word test the link takes you to fred.com
|
| Ruffred
 
Back
Top