DBRW make link have ScreenTip

A

Appalachia

I have made a DBRW page and assigned a ScreenTip as -
<%=FP_FieldURL(fp_rs,"Address")%>

ScreenTip is working but it is showing plusses instead of spaces and other
characters for apostrophe etc.

Is there a way round this?

Thank you

SC

Confusion will be my epitaph...
 
R

Ronx

Using FP_FieldURL will do this - it converts the apostrophes, spaces etc.
to characters or numeric/character entities that are suitable for a URL (for
example: http://example.com/page.asp?tp=my+page ) - spaces are converted to
+, & is converted to &amp;, and % is converted to %25

Change your code to:

<%=FP_FieldVal(fp_rs,"Address")%>

FP_FieldVal() will HTML encode the address, so some characters will appear
in the code as entities, but appearance in the browser should be normal.

If this fails, then use <%=FP_FieldVal(fp_rs,"Address")%>
which does not encode anything, but may result in odd effects...

--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.
 

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