struts request value?
hi,
in struts after getting data from database,
i set values to arraylist,
-
ArrayList alist = viewProjects(user);
if(alist != null && !alist.isEmpty())
{
request.setAttribute("listofPorjetcts",alist);
}
-
i try to access this listofPorjetcts object in jsp page i am getting error
javax.servlet.ServletException: Cannot find bean projectlist in any scope
can any one help how to get this object and display values?
thanks
sai

