SessionTransformer: multiple select

2002-10-21 Thread Alex Romayev
Hello, I have a "multiple" select, which is being submitted by a form, so that my request string looks like: my-action?selectItem=1selectItem=2selectItem=3... Does anyone know how I could retrieve all of the "selectItem" request paramters? I've tried (just to see what happens): session:getxml

RE: SessionTransformer: multiple select

2002-10-21 Thread Alex Romayev
:42 PM To: [EMAIL PROTECTED] Cc: Subject: RE: SessionTransformer: multiple select Something like this should do the trick inside of an xsp. Be sure to declare the xsp-request logicsheet. items xsp:logic String[] selectItems = xsp-request:get-parameter-values name=selectItem as=array