How to display arraylist value in jsp, using JSTL tags?
Pradeep Prabhakaran
Greenhorn
Joined: Sep 25, 2010
Posts: 7
posted
0
I have an arraylist object(e,g myArrayList),which contains a bean object.
Now if i m setting this object in request using:
request.setAttribute("myArraylist",myArrayList);
i want this object in my jsp. I know how to iterate the values using scriptlets, but i want to use jstl tags to retrieve the value of the Arraylist from the request object. N use the tags to display the values in jsp.