Need to show the url in the address bar of Explorer

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

Guest

Am using frontpage 2002, to create html documents. These files are uploaded on the server, and when the visitors click on the documents the path is visible on the bottom of the screen. I need to have the path visible in the address bar too. Any help would be welcome
 
The path is automatically visible in the address bar, unless you are using
frames.
--
Tom Pepper Willett
Microsoft MVP - FrontPage
www.microsoft.com/office/frontpage/prodinfo/default.mspx
To find the best Newsgroup for FrontPage support see:
www.net-sites.com/sitebuilder/newsgroups.asp
-----
Leena said:
Am using frontpage 2002, to create html documents. These files are
uploaded on the server, and when the visitors click on the documents the
path is visible on the bottom of the screen. I need to have the path visible
in the address bar too. Any help would be welcome
 
Leena,

Do you have a URL we can look at?

--
Jack Brewster - Microsoft FrontPage MVP

Leena said:
Am using frontpage 2002, to create html documents. These files are
uploaded on the server, and when the visitors click on the documents the
path is visible on the bottom of the screen. I need to have the path visible
in the address bar too. Any help would be welcome
 
You can add a Script in each page

<script language="JavaScript" language="JavaScript"><!-- Hide It:
// Show Page Title in Frames Window Address Bar
if (top != self) top.document.title = document.title;
// ShowIt: --></script>


--




| As I said in my original reply, if you are using frames, only the web site
| name will appear, not the page. That's how it works.
| --
| Tom Pepper Willett
| Microsoft MVP - FrontPage
| www.microsoft.com/office/frontpage/prodinfo/default.mspx
| To find the best Newsgroup for FrontPage support see:
| www.net-sites.com/sitebuilder/newsgroups.asp
| -----
| | > http://www.securitymanagement.com
|
|
 
As you've been told, you are using frames, and it does not and will not show
in the address bar on the top.
--
Tom Pepper Willett
Microsoft MVP - FrontPage
www.microsoft.com/office/frontpage/prodinfo/default.mspx
To find the best Newsgroup for FrontPage support see:
www.net-sites.com/sitebuilder/newsgroups.asp
-----
Leena said:
when you click on "highlights" from http://www.securitymanagement.com
do you see http://www.securitymanagement.com/market.html the entire path
on the address bar on the top, i can only see it at the bottom of the page.
 
Change Stefan's script slightly to:

<script language="JavaScript" language="JavaScript"><!-- Hide It:
// Show Page Location in Frames Window Address Bar
if (top != self) top.document.title = document.location.href;
// ShowIt: --></script>

For all pages not displayed as part of a frame-set, change the page title to
the URL for the page.

--
Ron

Reply only to group - all emails will be deleted unread.


Leena said:
when you click on "highlights" from http://www.securitymanagement.com
do you see http://www.securitymanagement.com/market.html the entire path
on the address bar on the top, i can only see it at the bottom of the page.
 
Back
Top