fea jabi wrote the following on 1/18/2006 9:24 AM:

       request.set("List1 ", List1 );

Is this exactly what you are trying to type? (Is there even a set method in Request? Also note the extra space you have before the closing quote.)

You want request.setAttribute("List1", List1 );

Don't forget if you use "List1" as the name you'll have to pull it out as "List1" on the JSP.

(Side note, in Java instance variables are usually declared starting with a lowercase letter so I'd declare ArrayList Lis1 as 'list1')

--
Rick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to