| Author |
How to define object using custom tags?
|
Pras Tiwari
Ranch Hand
Joined: Nov 07, 2005
Posts: 185
|
|
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
|
********Deserve Before You Desire********
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
|
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: How to define object using custom tags?
|
|
|