Re: Accessing List in JSP

2006-05-11 Thread Sunil_Sahu
Sonu, Make two changes in your code, it will definitely work.. 1. Add the following line in your Action Class: request.setAttribute("myForm",myForm); 2. Modify the JSP code Hope it helps. Thanks & Regards Sunil Sahu Sonu S <[EMAIL PROTECTED]

RE: Accessing List in JSP

2006-05-11 Thread Patil, Sheetal
First thing you have to set your form object in either session or request by in action classs if("request".equals(mapping.getScope())) { request.setAttribute(mapping.getAttribute(),form); }else { request.getSession().setAttribute(mapping.getAttribute(), form)