You don't have to loop to get at a request param, just use the param 
implicit object in your EL expression like so:

${param.myQuery}

-Rahul

On 4/28/05, David Schwartz <[EMAIL PROTECTED]> wrote:
> Hi.
> I'm trying to dynamically evaluate & loop through a request parameter 
whose
> value is a ResultSet.
> 
> First, I'm looping the requestScope to find a param named "myQuery".
> Once found I want to output the rows of the query.
> 
> <c:forEach items = '${requestScope}' var = "paramList" >
>    <c:if test = '${paramList eq "myQuery"}' >
> 
>        <%-- Here's where I'm stuck.
>             How do I reference the value of myQuery, which is a 
ResultSet?
>        --%>
> 
>        <c:forEach items = '${}' >
> 
>    </c:if>
> </c:forEach>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

Reply via email to