As an example I have something like:
<dt><strong>
<fm:clubname clubname=<pr:field name="clubName" />
url=<pr:field name="url" /> />
</strong></dt>
Where the iterator returns the clubName and url strings. All I can get are
either compiler failures, or formatted text containing the unexpanded
iterator, e.g. <pr:field name="clubName" />. I have tried single quotes,
double sets of quotes in a variety of manners with no joy. Any help
appreciated.
--
Colin Walls
Email: Colin...@murorum.demon.co.uk
Web: http://www.murorum.demon.co.uk
Phone: 01625 535123
Mobile: 07765 175829
So, if you have a String = "Why Spelling is /"Dificult/""; ... which allows
you to place "s in a middle of a string.
-- Navid Azimi
"Colin Walls" <co...@morurom.demon.co.uk> wrote in message
news:1007910309.24214....@news.demon.co.uk...
Patricia
> I believe the escape character is "\".
Yep, tried that one too.
<% String clubname = "<pr:field name=\"clubName\"/>" ; %>
All that happens is that the string gets set to
<pr:field name="clubname"/>, it doesn't get expanded.
Infuriatingly in a straight HTML statement
<input type=submit name=operation
value="<pr:field name="regionName"/>">
you don't need any escapes, and it does get expanded. The only thing I can
think is that there is a bug in the jsp servlet compiler.
<% String clubname = "<pr:field name=\\"clubName\\"/>" ; %>
Worth a shot....
-- Navid Azimi
"Patricia Shanahan" <pa...@acm.org> wrote in message
news:3C14B9F4...@acm.org...