Skip to main content
Inspiring
December 7, 2010
Answered

Frameset does not excute

  • December 7, 2010
  • 1 reply
  • 2780 views

Not sure what is the problem, when I change Application.cfm to Application.cfc
my browser stays at the index page without excute the frameset in the  page. If I put text before frameset it excutes.

if I use cfinclude news.cfm before before the frameset, it excutes as well.

Any clues what may  cause this?  Thanks.

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

<HEAD>        <TITLE>Index Page</TITLE>  
</HEAD> 

<FRAMESET BORDER="0" FRAMEBORDER="0" FRAMESPACING="0" ROWS="0,*,0" id="index" >  
     <FRAME NAME="header" SRC="blank.htm"  id="headerFrame" SCROLLING="no" MARGINHEIGHT=0 MARGINWIDTH=0 NORESIZE>      
        <FRAME NAME="main"   SRC="news.cfm"  id="mainFrame"  SCROLLING="yes" MARGINHEIGHT=0 MARGINWIDTH=0 NORESIZE>      <FRAME NAME="debug" SRC="blank.htm"      id="saveFrame"   SCROLLING="no" MARGINHEIGHT=0 MARGINWIDTH=0 NORESIZE> </FRAMESET> <noframes><body></body> </noframes> </HTML>
This topic has been closed for replies.
Correct answer Dave Watts

Dave, I tried in Firefox, Opera and IE, neither showed the text.cfm in the list and neither shows the text even I put the text in the body. It is so strange.


I see you've already found your solution, but in case this will be useful: I referred to Firebug earlier, which is a Firefox plugin. It lets you see the individual requests and responses made by Firefox, and is a very useful client-side debugging tool. I recommend you take a look at it, as it'll save you hours of debugging in the future!

Dave Watts, CTO, Fig Leaf Software

http://www.figleaf.com/

http://training.figleaf.com/

Read this before you post:

http://forums.adobe.com/thread/607238

1 reply

Community Expert
December 7, 2010

What exactly do you mean by "change Application.cfm to Application.cfc"?

Dave Watts, CTO, Fig Leaf Software

http://www.figleaf.com/

http://training.figleaf.com/

Read this before you post:

http://forums.adobe.com/thread/607238

Dave Watts, Eidolon LLC
s6868Author
Inspiring
December 7, 2010

Sorry for not providing enough information. I am using Coldfusion 9 server, db2 database. When I tested to switch Application.cfm to Application.cfc. it works fine until to the point OnRequest process Index.cfm page. Because the page contains frameset, it suppose to bring the file that frame src pointed to. which is news.cfm. but it does not. All that frameset part is not excuting.

Thanks,

Inspiring
December 7, 2010

Will news.cfm run outside the frameset?