URL: http%3A%2F%2F

B

Bertman

Hello,

I want a site to open a URL that he get's from a database.

<frame name="inhoud" target="hoofd"
src="linkupdate.asp?UrlId=<%=FP_FieldURL(fp_rs,"UrlId")%>">
<frame name="hoofd" scrolling="auto" src="<%=FP_FieldURL(fp_rs,"URL")%>">

The URL for expample: www.mcafee.com
He want's to open: http%3A%2F%2Fwww%2Emcafee%2Ecom
And then you get an error, how can I change it ?

When you make a normal hyperlink on a site with
<%=FP_FieldURL(fp_rs,"URL")%>"> then it works fine, but that's not what I
want.

Bert
 
B

Bertman

It's normal textfield in de database. With just plain tekst, but this is
normal tekst
http%3A%2F%2Fwww%2Emcafee%2Ecom
%3A = :
%2F = /
%2E = .
 
R

Randy Birch

It should work if you drop the http%3A%2F%2F from the front ... if you paste
http%3A%2F%2Fwww%2Emcafee%2Ecom into a browser you'll see (with IE at least)
it tries to resolve it to http://http://www.mcafee.com.

--

Randy Birch
MVP Visual Basic
http://vbnet.mvps.org/
Please respond only to the newsgroups so all can benefit.


: It's normal textfield in de database. With just plain tekst, but this is
: normal tekst
: http%3A%2F%2Fwww%2Emcafee%2Ecom
: %3A = :
: %2F = /
: %2E = .
:
:
:
: "Jim Cheshire" <[email protected]> schreef in bericht
: : > Looks like someone has URL encoded the link before adding it to the
: > database. You need to decode it first.
: >
: > --
: > Jim Cheshire
: > Jimco
: > http://www.jimcoaddins.com
: > ================================
: > Author of Special Edition
: > Using Microsoft Office FrontPage 2003
: > 5 Stars on Amazon and B&N
: > ================================
: > The opinions expressed by me in the
: > newsgroups are my own opinions and
: > are in no way associated with my
: > employer or any other party. Jimco is
: > not associated in any way with any other
: > entity.
: >
: >
: >
: > : > > Hello,
: > >
: > > I want a site to open a URL that he get's from a database.
: > >
: > > <frame name="inhoud" target="hoofd"
: > > src="linkupdate.asp?UrlId=<%=FP_FieldURL(fp_rs,"UrlId")%>">
: > > <frame name="hoofd" scrolling="auto"
: > src="<%=FP_FieldURL(fp_rs,"URL")%>">
: > >
: > > The URL for expample: www.mcafee.com
: > > He want's to open: http%3A%2F%2Fwww%2Emcafee%2Ecom
: > > And then you get an error, how can I change it ?
: > >
: > > When you make a normal hyperlink on a site with
: > > <%=FP_FieldURL(fp_rs,"URL")%>"> then it works fine, but that's not
what
: I
: > > want.
: > >
: > > Bert
: > >
: > >
: >
: >
:
:
 

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

Top