database hyperlink new page

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

Guest

Just starting with databases so be gentle please.......

I've created a data base and actually managed to get it to show up on my
test site. I have hyperlinks to external sites and they work but I would
like them to open in a new window. I understand how to do that in "hypelink
properties" for regular links but I am unable to access hypelink properties
in the database.

Test site is http://www.bdmcdaytona.com/testdux/agentroster.asp

Thanks
 
First, remove all the gray code from the area that displays the field, and
then add the target tag, so it looks like this - the trick is to surround
the _blank with single quotes, not double.

<p><b>Web Site:</b>&nbsp;<%="<a target='_blank' href=""" &
FP_FieldLink(fp_rs,"website") & """>" & FP_FieldVal(fp_rs,"website") &
"</a>"%></p>


--

~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
web: http://www.spiderwebwoman.com/resources/
 
Worked like a charm, thank you very much

Kathleen Anderson said:
First, remove all the gray code from the area that displays the field, and
then add the target tag, so it looks like this - the trick is to surround
the _blank with single quotes, not double.

<p><b>Web Site:</b> <%="<a target='_blank' href=""" &
FP_FieldLink(fp_rs,"website") & """>" & FP_FieldVal(fp_rs,"website") &
"</a>"%></p>


--

~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
web: http://www.spiderwebwoman.com/resources/
 
Kathleen Anderson said:
First, remove all the gray code from the area that displays the field, and
then add the target tag, so it looks like this - the trick is to surround
the _blank with single quotes, not double.

<p><b>Web Site:</b> <%="<a target='_blank' href=""" &
FP_FieldLink(fp_rs,"website") & """>" & FP_FieldVal(fp_rs,"website") &
"</a>"%></p>


--

~ Kathleen Anderson
Microsoft MVP - FrontPage
Spider Web Woman Designs
web: http://www.spiderwebwoman.com/resources/
 
Daytona Steve said:
Just starting with databases so be gentle please.......

I've created a data base and actually managed to get it to show up on my
test site. I have hyperlinks to external sites and they work but I would
like them to open in a new window. I understand how to do that in
"hypelink
properties" for regular links but I am unable to access hypelink
properties
in the database.

Test site is http://www.bdmcdaytona.com/testdux/agentroster.asp

Thanks

If you examine the "html code" for a regular link I believe you will see a
"_blank" in there someplace. If your database has the html linking code
located in the DB, you can add the _link into that code. If the DB display
page has all the html code except the URL address you can add the _blank
directly to the page.

Hope that helps,
Tom
 
Hi im new to frontpage can you help me link my database in access to my link
in frontpage? went through the steps but it doesn't work!
 
Looks like you have links there now

--

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


| Hi im new to frontpage can you help me link my database in access to my link
| in frontpage? went through the steps but it doesn't work!
|
| "Daytona Steve" wrote:
|
| > Just starting with databases so be gentle please.......
| >
| > I've created a data base and actually managed to get it to show up on my
| > test site. I have hyperlinks to external sites and they work but I would
| > like them to open in a new window. I understand how to do that in "hypelink
| > properties" for regular links but I am unable to access hypelink properties
| > in the database.
| >
| > Test site is http://www.bdmcdaytona.com/testdux/agentroster.asp
| >
| > Thanks
 
Back
Top