Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with FrameSets?

Status
Not open for further replies.

tonedef

Programmer
May 24, 1999
64
0
0
US
I have a frameset that worked fine for some time untill I added another frame to the set. When I added this new frame, suddenly the frameset loads oddly. By this I mean that (with no repeating pattern) a frame will not load the page that it should (404 Error). Then that page will end up in another frame. The page from that frame will be moved, and so on.

Following is the good version of the FrameSet:

[tt]
<HTML>
<HEAD>
</HEAD>
<FRAMESET COLS=&quot;146,*&quot; BORDER=0 FRAMESPACING=0 BORDERCOLOR=&quot;#808080&quot;>
<FRAMESET ROWS=&quot;15%,76%,*&quot;>
<FRAME NAME=&quot;frListNavigate&quot; SRC=&quot;./pgTabsForQuery_queries.html&quot; SCROLLING=&quot;NO&quot; NORESIZE FRAMEBORDER=&quot;NO&quot;>
<FRAME NAME=&quot;frList&quot; SRC=&quot;./pgViewCannedQueries.html&quot; SCROLLING=&quot;AUTO&quot; FRAMEBORDER=&quot;NO&quot;>
<FRAME NAME=&quot;frButtons&quot; SRC=&quot;./pgButtonsForQuery.html&quot; SCROLLING=&quot;NO&quot; FRAMEBORDER=&quot;NO&quot;>
</FRAMESET>
<FRAMESET ROWS=&quot;44%,48%,*&quot;>
<FRAME NAME=&quot;frUserQuery&quot; SRC=&quot;./pgShowQuery.html&quot; SCROLLING=&quot;AUTO&quot;>
<FRAME NAME=&quot;frQueryResults&quot; SRC=&quot;./pgQueryResults.html&quot; SCROLLING=&quot;AUTO&quot;>
<FRAME NAME=&quot;frQueryResultsButtons&quot; SRC=&quot;./pgQueryResultsButtons.html&quot; SCROLLING=&quot;AUTO&quot;>
</FRAMESET>
</FRAMESET>
</HTML>
[/tt]
Then everything goes wrong when I make this change:

[tt]
<HTML>
<HEAD>
</HEAD>
<FRAMESET COLS=&quot;146,*&quot; BORDER=0 FRAMESPACING=0 BORDERCOLOR=&quot;#808080&quot;>
<FRAMESET ROWS=&quot;7%,7%,76%,*&quot;>
<FRAME NAME=&quot;frSelectGroup&quot; SRC=&quot;./pgSelectGroup.html&quot; SCROLLING=&quot;NO&quot; NORESIZE>

<FRAME NAME=&quot;frListNavigate&quot; SRC=&quot;./pgTabsForQuery_queries.html&quot; SCROLLING=&quot;NO&quot; NORESIZE FRAMEBORDER=&quot;NO&quot;>
<FRAME NAME=&quot;frList&quot; SRC=&quot;./pgViewCannedQueries.html&quot; SCROLLING=&quot;AUTO&quot; FRAMEBORDER=&quot;NO&quot;>
<FRAME NAME=&quot;frButtons&quot; SRC=&quot;./pgButtonsForQuery.html&quot; SCROLLING=&quot;NO&quot; FRAMEBORDER=&quot;NO&quot;>
</FRAMESET>
<FRAMESET ROWS=&quot;44%,48%,*&quot;>
<FRAME NAME=&quot;frUserQuery&quot; SRC=&quot;./pgShowQuery.html&quot; SCROLLING=&quot;AUTO&quot;>
<FRAME NAME=&quot;frQueryResults&quot; SRC=&quot;./pgQueryResults.html&quot; SCROLLING=&quot;AUTO&quot;>
<FRAME NAME=&quot;frQueryResultsButtons&quot; SRC=&quot;./pgQueryResultsButtons.html&quot; SCROLLING=&quot;AUTO&quot;>
</FRAMESET>
</FRAMESET>
</HTML>

The problem does not occur every time but sporadically. Any thoughts
 
I don't know for sure, but maybe you have a error in
pgSelectGroup.html...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top