• 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

Using FrameSet for navigation

 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I have got two jsp's and a html page displayed in frames in a single jsp page say MyJSP.jsp.

MyJSP.jsp


In my frame1.jsp I have got

frame1.jsp


Now when I click on IndexFrame.jsp from MyJSP.jsp, I want to navigate to that page with URL being http://localhost:8080/MyServlet/jsp/IndexFrame.jsp
rather than being on the same URL http://localhost:8080/MyServlet/jsp/MyJSP.jsp.

Is this possible? If so please help me out!!!
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That is not how frames work.

Eric
 
jagan raja
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
So this means I cant use frames at this context.

Is there any another solution or a suggestion for this.

 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why are you using frames in the first place? Doing that to just hold navigation is a bead choice for using frames.

Eric
 
reply
    Bookmark Topic Watch Topic
  • New Topic