how to launch new page on the same page using frontpage

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

Guest

Hello everyone, I'm trying to set my webpage so that when a visitor clicks on
the navigation button, it launches the new page to replace the current one
instead of opening a new browser page. and so far...FrontPage 1, Chris 0.
any recomendation? thanks
chris
 
In Code View, look for a tag in the head section similar to
<base target=_blank>
Delete it.
This will affect all links on the page.
 
In addition to Ron's suggestion, also look for the target attribute on any
of the links that are causing a problem. If set to _blank they will always
open in a new window. You should be able to either remove the target
attribute from these links, or you can set them to "_self", which will laod
the new page into the same space of the old one.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
Back
Top