• 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

Struts and Frameset

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello everyone,
I am kind of new to Struts. I have the following question: I would like to use frameset to display my current struts application in one half of the browser screen, and use the other half to display a totally different application. How can I go by doing that? here is my entry point jsp file.
entry.jsp
---------
<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
<tiles:insert page="/layouts/defaultLayout-psa.jsp" flush="true">
<tiles ut name="header" value="/common/header.jsp" />
<tiles ut name="menubar" value="/common/menubar.jsp"/>
<tiles ut name="body-content" value="/search-psa-body.jsp"/>
<tiles ut name="footer" value="/common/footer.jsp"/>
</tiles:insert>

Your help will be very appreciated.
Thanks in advance,
Ray.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic