• 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

How to define object using custom tags?

 
Ranch Hand
Posts: 186
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have following jsp scriptlet in my JSP page in STRUTS application.
<%
Object foo = session.getAttribute( "stest" );
if( foo == null ) {
%>
<bean efine name="adminhomeForm" property="cudata" scope="request" id="pp1"></bean efine>
<%
session.setAttribute( "stest", pageContext.getAttribute("pp1"));
}
request.setAttribute( "test", session.getAttribute("stest"));
%>

Now I want to remove ths complete scriptlet & use corresponding custom tags/JSTL for above functionality. How should I write it?
I tried to use <c:set... But couldn't succeed. Please help me.
Thank you.
Pras
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
 
reply
    Bookmark Topic Watch Topic
  • New Topic