• 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

where can we use jsp:param

 
Ranch Hand
Posts: 56
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One of the jsp elements where we can use
<jsp aram name="aName" value="aValue"/> is inside <jsp:forward>...<.jsp:forward>.
where else can we use it?
 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Based on SCWCD Exam Study Kit (Hanumant Desmukh, Jignesh Malavia)page 237,
<jsp aram /> elements can be nested within the <jsp:include > or <jsp:forward > element.
Thambi
 
Ranch Hand
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
according to jsp sepcification 1.2, <jsp aram> can be use with <jsp:include>, <jsp:forword> and <jsp arams>, where <jsp arams> is a sub-element of <jsp lugin>.
 
reply
    Bookmark Topic Watch Topic
  • New Topic