You may want to try this out and see what happens, and I remember my frames correctly, you need an absolute path to your file and since your running this off your computer it would have to be something like this
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<frameset rows="30,70" frameborder="no" border="0" framespacing="0">
<frame src="file:///C|/Program Files/Adobe/Adobe Dreamweaver CS3/UntitledFrame-2" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="file:///C|/Program Files/Adobe/Adobe Dreamweaver CS3/Untitled-2" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
or to shorten it up a bit it would look like this
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<frameset rows="30,70" frameborder="no" border="0" framespacing="0">
<frame src="../~Sai/wiki/top.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="../~Sai/wiki/links.html" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
The same goes for your website you would want your source frames to look like this
CODE
<frame src="http://www.yoursite.com/frame1.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="http://www.yoursite.com/frame2.html" name="mainFrame" id="mainFrame" title="mainFrame" />
Hopefully that helps connect your website together, and if you need any more help check this
website out on frame sets and using frames.
Reply