• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

how to close the html frames

 
Ranch Hand
Posts: 518
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
In my application,I need to select a network and number of contacts and have to submit.If i select "aircel" and 30 contacts,my servlet program will dial 30 numbers.And then I need to display which network is selected and this frame should be refreshed for every 5 seconds.So i put two frames (top to select and bottom to display which is selected).After this if i select any network in the top frame,It again produces another frame to display which network is selected.So i am having 3 frames in this situation.How can i do this without producing that 3rd frame?

Any help would be appreciated.

Thanks
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are the frames created with magic? How are the frames created?

Eric
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think you are creating the frame after the click of a submit button ie., dynamically. May be you need to go through your logic once again. Its highly impossible for another frame to be created if you have already set the target frame as "frame2"
 
preethi Ayyappan
Ranch Hand
Posts: 518
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I will explain you in detail how the frames are created.

My first page is (NetworkSelection.java)servlet page with html tags inside.Here i am selecting a network and number of contacts and having a start and stop buttons.If i click start button,it will go to mediator.html which is used to split a page into two frames.The top frame shows the network selection page and the bottom page shows which network is selected?If I select the network again ,another bottom frame is created and that frame shows the network selected is already running.This is the problem.(i.e) When pressing the start button,it goes to the mediator.html and creates another frame.Without creating another frame,can i show it in a popup? or can i show it in the same frame itself?

Thanks
 
Destiny's powerful hand has made the bed of my future. And this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic