• 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

JSP file not showing frames.

 
Ranch Hand
Posts: 146
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am facing a strange problem with JSP. I made a file Testing.jsp which calls two other JSP files in different frames.
Testing.jsp

The files that it calls run well independently. But when I run this file nothing is displayed,not even any error.
What may be the reason? Please help.
Abhishek
 
Ranch Hand
Posts: 213
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Remove the body tag from the frame declaration jsp and try

Regards
 
Abhishek Asthana
Ranch Hand
Posts: 146
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Sarath it works.
Abhishek
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Abhishek,

Can you tell me why you have DepotID=DEPOTID in your
<frame src="DepotManagerTreeView.jsp?DepotID=DEPOTID1" target='content'> tag?

I'm new to using Frames and I have situation in which from a left frame I'm displaying regions say DEV, QUA, Training, etc etc. If the user selects DEV, I have to pull a record from database based on region id i.e. DEV this time around and display it on the right frame.

Of course, Regions displaying in left frame should be clickable i.e. will have a link.

I don't know how to approach to this issue. So far, I have a simple plain .html file with two frames. In this file, within left FRAME, I'm calling another file called RBUtilityMain.jsp which will do a query to database and display in left frame.

Any help or idea would be greatly appreciated.

Thanks
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic