Click to See Complete Forum and Search --> : Dynamicalyy creating frames
if i have 5 pages in frames say page 1 2 3 4 5 page 1 is index and contains pages 2,3 and 4 in frameset, but in page 4 I want to create a frame and display page 5 in it, thus without that frame being visible in pages 1-3. HOW DO I DO THAT
gerjan
04-04-2003, 05:21 AM
Could you draw this and attach that file.
Because there are serveral options doing this.
gerjan
04-04-2003, 07:15 AM
You just set frame 4 relative and frame 5 1 pixel, nobody will see that frame!!
<frameset cols="80,*" frameborder="NO" border="0" framespacing="0">
<frame src="page1.asp" name="leftFrame" scrolling="NO" noresize>
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0">
<frame src="page2.asp" name="topFrame" scrolling="NO" noresize >
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0">
<frame src="page3.asp" scrolling="NO" noresize >
<frameset cols="*,1" frameborder="NO" border="0" framespacing="0">
<frame src="page4.asp" name="mainFrame">
<frame src="page5.asp" name="rightFrame" scrolling="NO" noresize>
</frameset>
</frameset>
</frameset>
</frameset>
Hope this is what you ment!
Yes, thanks, now the thing is, set up like that with the page 1 pixel, i can't see it, but how do I "enlarge" to view it when necessary