Hello,

I'm a beginner in xsp and I don't know how to pass a java variable as a
parameter of a logicsheet template call. To be more clear, consider this
simple example :
 
<esql:row-results>
        <tr>
                <xsp:logic>
for (int i=1;i&lt;=nbCol;i++) {
                </xsp:logic>
                <td><esql:get-string column="i"/></td>
                <xsp:logic>
                }
                </xsp:logic>
        </tr>
</esql:row-results>

In this example, I'd like i to take the value of the int as it is
defined inside <xsp:logic>

So I tried somthing like that : 

<esql:get-string>
        <xsp:parameter
name="column"><xsp:expr>i</xsp:expr></xsp:parameter>
</esql:get-string>

But Cocoon answered me : 
Parameter 'column' missing in dynamic tag <esql:get-string> 

How can I do that ?

Philippe




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