-----Original Message-----
From: Pradeep [mailto:[EMAIL PROTECTED]]
> 2. If the user clicks on the hyperlinks then the new page
> should open in the Arena.
> This should happen for every hyperlink.
Hi Pradeep,
There are two ways that come to mind to accomplish what your looking for.
They both involve frames of one type or another.
Standard frames:
<html>
<frameset cols="120,*">
<!--Creates two columns. Left column 120px wide, right column fills the
remainder of the window. -->
<frame src="link_file.html" name="navcol"></frame>
<frame src="initial_file.html" name="arena"></frame>
</frameset>
Your links in link_file.html would look like this:
<a href="about.html" target="arena">hplink1</a>
<a href="why.html" target="arena">hplink2</a>
</html>
============================================================================
=======
I frames (supported by IE4+, NN6+, Moz1.0, Opera5+):
<HTML>
<HEAD>
<TITLE>Arena in an Iframe</TITLE>
</HEAD>
<BODY>
<div style="float:left; width:120px; height:100%; border:2px solid
#9999ff;">
<a href="about.html" target="arena">hplink1</a><br />
<a href="why.html" target="arena">hplink2</a>
</div>
<Iframe src="initial_file.html" name="arena" width="500"
height="100%"></Iframe>
</BODY>
</HTML>
Change file name and styles to suit your needs and that should do it for
you.
Perry Gerenday
www.webinitiative.net
____ � The WDVL Discussion List from WDVL.COM � ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub
________________ http://www.wdvl.com _______________________
You are currently subscribed to wdvltalk as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]