on 2/13/02 2:16 PM, "Robert Lee" <[EMAIL PROTECTED]> wrote:

> I have parameters from a screen that look like this when I display
> $data.getParameters() = {line=[1],[2],[3]}{count=[5],[6],[7]}{action=match}
> $data.getParameters().line = 1
> $data.getParameters().count=5
> $data.getParameters().action=match
> 
> #foreach($item in $data.getParameters())  ## results in $item being null
> 
> #foreach($item in $data.getParameters().line)  ##  results in $item being
> null
> 
> #foreach($item in $data.value) ## results in $item being null
> 
> Is there a way to access the sub items in line or count?
> 
> Robert Lee

$data.Parameters returns a ParameterParser object, not a List. Look at the
API for the PP object to get an idea of what you can do with it.

Thx.

-jon


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

Reply via email to