I am in the process of creating a password protected portion of my site that will be using a frameset.
The left frame is the navigation menu, the right (larger) frame is the primary display window.
Here is the frameset code:
<cfinclude template="header.cfm">
<frameset rows="159,160">
<frame src="menu.cfm">
<frame src="main.cfm">
</frameset>
<noframes>
<body bgcolor="#FFFFFF">No frame support.
</body>
</noframes>
</html>
Header.CFM Code:
<cfif isdefined("session.loggedin">
<cfif session.loggedin eq "no">
<cflocation url="login.cfm">
</cfif>
<cfelse>
<cflocation url="login.cfm">
</cfif>
As soon as the login information is confirmed the login.cfm page directs the person to the frameset.
But the actual frameset never gets displayed, if I view the source of the page I see the frameset commands, but they just aren't executing.
Any suggestions?
The left frame is the navigation menu, the right (larger) frame is the primary display window.
Here is the frameset code:
<cfinclude template="header.cfm">
<frameset rows="159,160">
<frame src="menu.cfm">
<frame src="main.cfm">
</frameset>
<noframes>
<body bgcolor="#FFFFFF">No frame support.
</body>
</noframes>
</html>
Header.CFM Code:
<cfif isdefined("session.loggedin">
<cfif session.loggedin eq "no">
<cflocation url="login.cfm">
</cfif>
<cfelse>
<cflocation url="login.cfm">
</cfif>
As soon as the login information is confirmed the login.cfm page directs the person to the frameset.
But the actual frameset never gets displayed, if I view the source of the page I see the frameset commands, but they just aren't executing.
Any suggestions?