Frameset does not excute
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.
<!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>
