Hi
I passed checkbox values from html to
servlet and add in session attributes.
I have problem to display that values from session.
This code is for getting values from request parameter and store in session
paraName=(
String)reqPara.nextElement();
session.setAttribute(paraName, request.getParameter(paraName)); // paraName is selectprod
Now I want to get values of selectprod from session
if I write
Object obj = session.getAttribute("selectprod");
it is showing length of selectprod 2 but i want to display those two values.
Please help me.
Thanks
Vaishali