hai all,
can any one give me an idea how to set an array to the session, and how can get the values from another jsp?
katta vijay
Printable View
hai all,
can any one give me an idea how to set an array to the session, and how can get the values from another jsp?
katta vijay
U can set the array in session like this below:
Ex Array int a[] = {1,2,3};
HttpSession sessionObj = new HttpSession(true);
sessionObj.setAttribute("arrayObj",a);
Using session u can get the value from other jsp or using RequestDispatcher,url encoding etc