On Thu, 13 Jun 2002, Wolfgang R�ckelein wrote: > is it possible to set a BigInteger property with the c:set target="" > property="" in the EL JSTL? Same for a parameter in a prepared SQl > statement?
You can set any sort of property with <c:set target="..." property="..." value="..." /> The type of the property depends on the type of the expression in 'value' and the type of the target property. Note that <c:set> performs no conversion between Integer and BigInteger or any other custom stuff like that. -- Shawn Bayern "JSTL in Action" http://www.jstlbook.com (coming in July 2002 from Manning Publications) -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
