This week's giveaways are in the MongoDB and Jobs Discussion forums. We're giving away four copies of Mongo DB Applied Patterns and 4 resume reviews from Five Year Itch and have the authors/reps on-line! See this thread and this one for details.
Struts and how to insert a bean-value into a attribute
Kai Unewisse
Greenhorn
Joined: Nov 10, 2002
Posts: 10
posted
0
Hi all, I am using Struts 1.0.2 and have problems to stay complete xml-conform. I have to change some code into XML format, but I need some help. Is there any tutorial with xml-comform JSP code ? what can I do to fill an attribute like "alt" within <img > with conglomerated elements ? With xml-nonconform code would it be : <% String filename = "abc.txt"; %> <img alt="download this <%filename%>" /> I can use <jsp eclaration> for the the 1st part, but how to combine the stuff ? thanks a lot for any useful idea...
Jesse Beaumont
Ranch Hand
Joined: May 30, 2002
Posts: 43
posted
0
Use <jsp:expression>expression</jsp:expression> (=<%= expression %> or <jsp:text>text</jsp:text> Another alternative would be to use JSTL (<c ut> Hope this helps Jesse
---<br />Time flies like an arrow,<br />Fruit flies like a banana
Kai Unewisse
Greenhorn
Joined: Nov 10, 2002
Posts: 10
posted
0
Originally posted by Jesse Beaumont: Use <jsp:expression>expression</jsp:expression> (=<%= expression %> or <jsp:text>text</jsp:text>
But I can't say <img alt="download this <jsp:expression>filename</jsp:expression>" /> ?? Can you give me an example ? Thank you, Kai
Jesse Beaumont
Ranch Hand
Joined: May 30, 2002
Posts: 43
posted
0
Here is a sample:
It's a little more complicated than <%= filename%> Hope that helps. Jesse
Jesse Beaumont
Ranch Hand
Joined: May 30, 2002
Posts: 43
posted
0
Doh. Correction to the above. The < in the img and > after it should be < and $amp;gt; Sorry about that... (curse the interpreter...) Jesse