aspose file tools
The moose likes Struts and the fly likes How to define object using custom tags? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "How to define object using custom tags? " Watch "How to define object using custom tags? " New topic
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
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How to define object using custom tags?
 
Similar Threads
How to iterate over one List and get a nested property defined in a different List
scitping variables
Scripting varibale of type Vector
Pass A String and Write Out Its Value in JSP
Using bean:define