Forum Moderators: open

Message Too Old, No Replies

Need help, please!

Looking for a script!

         

Jonas

11:22 am on Dec 11, 2001 (gmt 0)



Hi, Im new here and don't know if this is the right forum to ask this question in, but here goes: I have been looking all over the net and really can't find a anything about how to open a website inside my own wesite. Do you know what I mean? Do I look for javascripts (I have searched all large javascripts sites!) or do I look for html/perl?

Please help me out here if you can.

Thanks!

DaveN

11:29 am on Dec 11, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi Jonas and welcome,

do you mean open a page inside your web site.

if you use a frameset (menu,main)put your menu on one side named menu, call the url you want to appear in your site but set the target to main

hope is helps

Dave

Jonas

11:36 am on Dec 11, 2001 (gmt 0)



Thanks DaveN.

Could you give a simple example if you have the time?

Thanks again!

Mike_Mackin

11:41 am on Dec 11, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Example:
[barconference.com...]
Click on Reserve a Place
an IFrame was used to load Webmaster World

Jonas

11:44 am on Dec 11, 2001 (gmt 0)



Thanks guys! That solved my problem!

DaveN

11:55 am on Dec 11, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



okay

frameset (welcome.htm)

<html>
<head>
<title>frame</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
<frame name="menu" scrolling="NO" noresize src="your_menu.htm">
<frame name="main" src="your_homepage.htm">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</noframes>
</html>

your_menu.htm

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<a href="http://www.webmasterworld.com" target="main">link to outside</a>
</body>
</html>

your_homepage.htm
anything

DaveN

Jonas

12:06 pm on Dec 11, 2001 (gmt 0)



Thanks again Dave! :)

joshie76

11:19 am on Dec 13, 2001 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Just a note that IFRAMEs are not supported in Netscape 4. blurgh. (FRAMESETS, however, are).