passing objects
Hi , I have around 200 clob objects in my jsp page.Each of them have a hyperlink.On clicking the hyperlink , form submit has to take place and clob object has to be passed on to the servlet.How could objects be passed on request submission?ThanksVivek
# 2
You can achieve that using request.setAttribute() methodin the JSP. In your servlet, you would call request.getAttribute().But I would discourage doing that, as clob objects are quite heavy.Try a smarter and simpler workaround that goes easy on performance.