Help - Search - Members - Calendar
Full Version: Screwed Up Frames
MSFN Forums > Coding, Scripting and Servers > Web Development (HTML, Java, PHP, ASP, XML, etc.)

   
Google Internet Forums Unattended CD/DVD Guide
gamehead200
Guys, if you look at the following code, it looks fine (to me), but when you view it a browser, the frame on the left shows up, but the one on the right is just a blank page...Can someone tell me what is wrong with this code?

CODE
<html>
<head>
<title>Altapex Construction Corporation</title>
</head>
<FRAMESET COLS="17%,83%" framespacing="0" border="0" frameborder="0">

<FRAMESET ROWS="100%">
<FRAME SRC="left.html" name=left>
 <noframes>
 <body>
 <p>This page uses frames, but your browser doesn't support them.</p>
 </body>
 </noframes>
</FRAMESET>

<FRAMESET ROWS="100%">
<FRAME SRC="index2.html" name=right>
 <noframes>
 <body>
 <p>This page uses frames, but your browser doesn't support them.</p>
 </body>
 </noframes>
</FRAMESET>

 <noframes>
 <body>
 <p>This page uses frames, but your browser doesn't support them.</p>
 </body>
 </noframes>
</FRAMESET>
<body>
</body>
</html>
babis
QUOTE
<html>
<head>
<title>Altapex Construction Corporation</title>
</head>

<frameset cols = "30%,*" frameborder="0" border="0" framespacing="0">
<frame src = "left.html" name = "left" noresize>
<frame src = "index2.html" name = "main" noresize>
</frameset>
</html>


make it simple and use the above code say for "index.html"


now call the site www.somesite.com/index.html
both frames should come up.. the left frame and the main frame (right etc.)
you can also have a top one..


btw are you writing this in notepad? or you using some editor?
gamehead200
Thanx! I've been trying to figure out what was wrong all day...Works great! Thanx again! biggrin.gif
babis
np... glad I was able to help..
Doggie
cool.. i needed that to.. thanx babis newwink.gif
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.