Hi Kevin,

I've had a similar problem. I resolved it by removing the <Body></Body>
tages from my Application.cfm file.

I *DO* have <Body> tages in my .cfm file with the <Frameset> tags. Works
fine in IE & NS. My sample file follows:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<cfsetting enablecfoutputonly="NO" showdebugoutput="NO">

<html>
<head>
 <title>Untitled</title>


 <STYLE TYPE="text/css">
  A:link{Color:Purple;Font_Style:Bold;}
  A:active{Color:Red;Font_Size:Larger;}
  A:visited{Color:Green;Font_Size:80%;Font weight:Normal;}
 </STYLE>
</head>


<frameset rows="15%,*">
 <frame name="Top" src="Top.htm" scrolling="no" noresize>
 <frameset cols="160,*">
  <frame name="Menu" src="Menu.htm" scrolling="no" noresize>
  <frame name="Main" src="Dummy.htm">
 </frameset>
 <noframes>
   <body>
<p>This site uses frames, but your browser doesn't support them.</p>
 </body>
 </noframes>
</FRAMESET>
</html>





----- Original Message -----
From: "Kevin Gilchrist" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, January 15, 2001 3:38 PM
Subject: Cannot define a frameset in .CFM file?


> Hi,
>
> I'm trying to define some frames in a .cfm file and can't seem to get the
> frames to appear and end up with a blank page.
> It works fine if I simply rename the .cfm file to .htm file.  What do I
need
> to do?
>
> The simple page I'm testing with looks like this:
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
>
> <html>
> <head>
> <title>Untitled</title>
> </head>
> <!-- frames -->
> <frameset  rows="22%,*">
>     <frame name=""
> src="../../../Inetpub/wwwroot/dashboard_wip/mainheader.htm"
marginwidth="10"
> marginheight="10" scrolling="auto" frameborder="1">
>     <frame name=""
> src="../../../Inetpub/wwwroot/dashboard_wip/frame3/shellmid.htm"
> marginwidth="10" marginheight="10" scrolling="auto" frameborder="1">
> </frameset>
>
> <body>
>
>
> </body>
> </html>
>
>
> What's strange is that when I do view the source of the blank page I get:
>
>
>
> <!DOCTYPE html public "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML>
> <HEAD>
>
> <META http-equiv="expires" content="Thu, 1 October 1998 00:00:00 PST">
> <TITLE>Project Tracking Application Global file</TITLE>
> </HEAD>
> <BODY>
>
>
>
> </BODY>
> </HTML>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
>
> <html>
> <head>
> <title>Untitled</title>
> </head>
> <!-- frames -->
> <frameset  rows="22%,*">
>     <frame name=""
> src="../../../Inetpub/wwwroot/dashboard_wip/mainheader.htm"
marginwidth="10"
> marginheight="10" scrolling="auto" frameborder="1">
>     <frame name=""
> src="../../../Inetpub/wwwroot/dashboard_wip/frame3/shellmid.htm"
> marginwidth="10" marginheight="10" scrolling="auto" frameborder="1">
> </frameset>
>
> <body>
>
>
> </body>
> </html>
>
>
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to