Re: passing references to tags using XML syntax

2002-02-14 Thread August Gresens
The solution from the spec worked for the use with the input taglib. I'm now having a problem with standard HTML tags, when I want to include values I have declared elsewhere in the code. For example jsp:declaration String myURL = http://www.foo.com; ; /jsp:declaration Later in the page, I

Re: passing references to tags using XML syntax

2002-02-14 Thread Shawn Bayern
The %= ... % syntax is intended only for custom actions (and those standard-action attributes that support it). Inserting dynamic text into an HTML tag's attribute is just like inserting dynamic text into arbitrary static, template text. The problem is that under the XML syntax, you can't

passing references to tags using XML syntax

2002-02-13 Thread August Gresens
Hi I'm attempting to use the select tag in the input taglib package with XML syntax. The select tag takes a reference to a util.Map for the options tag, but I can't figure out how this works with XML syntax. With non-XML syntax, one uses the tag as follows: % java.util.HashMap a = new