On Mon, 6 May 2002 [EMAIL PROTECTED] wrote: > I am using the VariableInfo class to create scripting variables in my > custom tags. Now I would like to create a variable scripting array > using this VariableInfo class. Do you know how I can do this?
Remember that with VariableInfo, you're instructing a JSP translator on how to produce Java source, so for the answer, look simply to how you'd create an array in Java source: use java.lang.String[] java.lang.Object[] (and so forth) as the name of the class. -- Shawn Bayern "JSP Standard Tag Library" http://www.jstlbook.com (coming this summer from Manning Publications) -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
