Originally posted by Hemant Kawale:
or
Or are you really asking if you can create and populate such elements from within the JSP page? In which case, I'd ask why you'd do this in a JSP rather than in the servlet controller.
[ February 07, 2006: Message edited by: Bear Bibeault ]<hr></blockquote>[/QB]
I have to convert some pages jsp pages that have declared and populated a arraylist in scriptlets.
I have to remove these scriptlets and use Jstl instead.
So is there any way of replacing this :
<%
ArrayList A = new ArrayList();
A.add("Error Message:");
A.add("Session Not Obtained");
A.add("Solution");
request.setAttribute("e",A);
%>
with JSTl tags