Link to a page

liunx

Guest
I am looking for solution of following problem.<br />
<br />
I need to have the page on my hard disk. The page should open a page from the internet in the same window (which opens when I am clicking on 'page.html') and then open some additional pages in separated windows.<br />
<br />
I know how to open additional windows with required pages. But I have problem how to force page opening from the internet in the same window.<br />
<br />
Thank you for your help.<!--content-->have you tried <br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"link.htm" target="_self">link</a><!--content-->Yes, it will work of course. But the question is how to do that automatically without necessity of creation a link to a page?<br />
<br />
You are opening the .html file and you are automatically redirected to desired page.<!--content-->I'm still not 100% certain what you mean, but would <br />
<br />
<base target="_self"> in the head section work for you?<!--content-->Thanks DaveSW.<br />
<br />
I have found the most convenient for me is the small JavaScript:<br />
<br />
location="http://..."<br />
<br />
When the page from hard disk is loaded I am automatically redirected to "http://...".<!--content-->neat<!--content-->
 
Back
Top