Re: Accessing List in JSP

2006-05-11 Thread Sunil_Sahu
;[EMAIL PROTECTED]> 05/12/2006 10:27 AM Please respond to Struts Users Mailing List To user@struts.apache.org cc Subject Accessing List in JSP Hi 2 all I am using Struts 1.2 in my action class i am writing List testList = new ArrayList(); testList.add("str 1"); testL

RE: Accessing List in JSP

2006-05-11 Thread Patil, Sheetal
Accessing List in JSP Hi 2 all I am using Struts 1.2 in my action class i am writing List testList = new ArrayList(); testList.add("str 1"); testList.add("str 2"); testList.add("str 3"); MyForm myForm = (MyForm) form; myForm.setMyList(testList); In Action Form

Accessing List in JSP

2006-05-11 Thread Sonu S
Hi 2 all I am using Struts 1.2 in my action class i am writing List testList = new ArrayList(); testList.add("str 1"); testList.add("str 2"); testList.add("str 3"); MyForm myForm = (MyForm) form; myForm.setMyList(testList); In Action Form i have done public class myForm extends ActionForm{