how to display selected images using checkbox ,i want send selected images to the other jsp pages but i dont know how to send ? using servlet jsp

how to display selected images using checkbox ,i want send selected images to the other jsp pages but i dont know how to send ? using servlet jsp

<% List al1 = (ArrayList)session.getAttribute("pictureList"); Iterator i = al1.iterator(); while (i.hasNext()) { User u1=(User)i.next(); //String imageStr=(String)i.next(); //String imgid=(String)i.next(); out.write(""); out.write(""); out.write(""); out.write(""); out.write(""); } %>
" + u1.getId() + ""); String link ="data:image/jpg;base64,"+u1.getImage(); //out.write(""+imgid); out.print(""); out.write(""); out.print(""); out.write("
View Answers









Related Tutorials/Questions & Answers:

Ads