I am haveing a problem with my CF app not being able to load frames when the Application.cfm file is in the directory. As soon as I take the application.cfm file out, the frames work as they are supposed to. Below is the code to the application.cfm:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Application.cfm</title>
</head>
<cfapplication name="Dash" sessionmanagement="Yes">
<body>
</body>
</html>
Here is the code for the first page with frames:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Dashboard</title>
</head>
<frameset rows="11%, *">
<frame src="Dash_Frame_Title.cfm" name="Title" id="Title" frameborder="0" scrolling="No" noresize
bordercolor="#000000">
<!-- frames w/in Frames-->
<frameset cols="10%,*">
<frame src="Menu\Dash_NoMenu.cfm" name="Menu" id="Menu" frameborder="0" scrolling="No" noresize
marginwidth="10" marginheight="10" bordercolor="#000000">
<frame src="Dash_Login.cfm" name="Main" id="Main" frameborder="0" scrolling="Auto" bordercolor="#000000">
</frameset>
</frameset>
<body>
</body>
</html>
Any output I put in the body is displayed, it only seems to be the frames that don't work when the app.cfm file is there.
If anybody has any information on this at all I would be greatly appreciative. Thanks in advance.
Dan
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Application.cfm</title>
</head>
<cfapplication name="Dash" sessionmanagement="Yes">
<body>
</body>
</html>
Here is the code for the first page with frames:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Dashboard</title>
</head>
<frameset rows="11%, *">
<frame src="Dash_Frame_Title.cfm" name="Title" id="Title" frameborder="0" scrolling="No" noresize
bordercolor="#000000">
<!-- frames w/in Frames-->
<frameset cols="10%,*">
<frame src="Menu\Dash_NoMenu.cfm" name="Menu" id="Menu" frameborder="0" scrolling="No" noresize
marginwidth="10" marginheight="10" bordercolor="#000000">
<frame src="Dash_Login.cfm" name="Main" id="Main" frameborder="0" scrolling="Auto" bordercolor="#000000">
</frameset>
</frameset>
<body>
</body>
</html>
Any output I put in the body is displayed, it only seems to be the frames that don't work when the app.cfm file is there.
If anybody has any information on this at all I would be greatly appreciative. Thanks in advance.
Dan