Hey there…I am sorta setting up mine the same way…
http://www.chillbillyproductions.com
I looked at your set up and it seems fine…I think your problem may be someplace else dude.
The problem I am tryin to figure out with the use of these frames is after an indexer crawls my site..it will pull up info into the results page on the search engine with a link to that page….that link will bring the user to that page and not my frame set page…….your gona have the same problem…after you figure out the one ya got now 🙂 I don’t think that the frames have anything to do with your problem.
Thread Starter
ShaneM
(@shanem)
I just tested this with Firefox and it works fine. So the issue appears to be with IE, which as usual is a nightmare to figure out.
I think I might just do something else now to pull it off… great!
yea…ya might not want ta follow that link i provided if ya need ta see a frameset-up…:)
This mornin I was inspired ta do some moding.
I’ve had the exact same problem. When I load the signin screen within a frame..nothing happens. when I load it in its own frams..no problem. Anybody have a way to get around this? ( I use IE as well).
I had the same problem and resolved it with 2 html files as follows:
index.html
———-
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
<html>
<head>
<title>My Site Title</title>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″>
<script language=”JavaScript” type=”text/JavaScript”>
<!–
function MM_checkBrowser(IEvers,URL,xURL) { //v4.0
var newURL=”, verStr=navigator.appVersion, app=navigator.appName, version = par
seFloat(verStr);
if (app.indexOf(‘Microsoft’) != -1) {
if (version >= IEvers || verStr.indexOf(IEvers) != -1)
newURL=URL; }
else newURL=xURL;
if (newURL != ”) { window.location=unescape(newURL); document.MM_returnValue=fa
lse; }
}
//–>
</script>
</head>
<body onLoad=”MM_checkBrowser(5.0,’http://my-dinamic-URL’,’http://my-static-URL/blog.html’);return document.MM_returnValue”>
</body>
</html>
blog.html
———
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 3.2 Final//EN”>
<html>
<head>
<title>MY SITE TITLE</title>
<META HTTP-EQUIV=”Pragma” CONTENT=”no-cache”>
</head>
<frameset rows=”100%,*” border=”0″>
<frame src=”http://my-dinamic-URL/” frameborder=”0″>
<frame frameborder=”0″ noresize>
</frameset>
</html>
The only rule here is that index.html and blog.html must reside on the static URL server.