Author |
Topic |
|
padawan
Junior Member
200 Posts |
Posted - 03 March 2003 : 00:03:37
|
How does one configure external web pages (files other than the regular Snitz asp pages) in Site Integration so that the launched link appears on the main (occupied by default.asp) page?
Here's an example. In my site (http://168.144.128.134/ofw), I've a button called "Home." The idea is to make "home" appear on the main page when clicked. Instead, when "Home" is clicked, it launches onto a new page.
How can I re-target home (target name?), so that the target, main.htm, replaces default.asp?
Here's the HTML snippet of my inc_site_left.asp (I'm using an Image map just to illustrate)
<map name="Map">
<area shape="rect" coords="51,269,149,284" href="default.asp" alt="Online Forum" title="Online Forum">
<area shape="rect" coords="51,284,148,301" href="liquidchat.asp" alt="Liquid Chat" title="Liquid Chat">
<area shape="rect" coords="53,188,150,205" href="main.htm" alt="Main Page" title="Main Page">
<area shape="rect" coords="53,347,149,364" href="guestbook.asp"
All help is greatly appreciated.
Padawan
|
"...be mindful of the SnitzForce..." |
|
Mrx
Starting Member
13 Posts |
Posted - 03 May 2003 : 04:59:23
|
Hi. Try.. <area shape="rect" coords="51,269,149,284" href="default.asp" target=_top alt="Online Forum" title="Online Forum">
Makes it take over the top frame or window. _parent is another goodie. Alternatly you could name a frame or window and use the name to open a document in it. |
|
Edited by - Mrx on 03 May 2003 05:02:07 |
|
|
|
Topic |
|
|
|