• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Frames in HTML

 
Ranch Hand
Posts: 285
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have a default html file with a frameset.
My frameset has two frames which loads 2 jsp pages.
The code is like this.
<FRAMESET ROWS="*,100">
<FRAME NAME="Frame1" SRC="first.jsp" MARGINWIDTH="10" MARGINHEIGHT="10" SCROLLING="yes" FRAMEBORDER="0">
<FRAME NAME="Frame2" SRC="second.jsp" MARGINWIDTH="0" MARGINHEIGHT="0" SCROLLING="no" FRAMEBORDER="0" >
</FRAMESET

But I don't want to show the second html (jsp) page.
Is there a way to do it ?
Also,
Now since both the pages are coming, it is taking some time to load the 2 pages. Why is the time delay ? How can this delay be solved ?
Thanks,
Maya
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

But I don't want to show the second html (jsp) page.
Is there a way to do it ?


Humm.... Why? You can't set a frame hidden! Maybe in netscape 6 explorer 6!. If you are trying to use this to post data from maybe consider making the frame very small , say 1 * 1 pixel
// Mathias
 
Shreya Menon
Ranch Hand
Posts: 285
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Mathias,
I am using this form to post the data.
well, do u have a code to make a SMALL FRAME ?
maya
 
reply
    Bookmark Topic Watch Topic
  • New Topic