Tito Eritja wrote:
How to use some bean value within a html:Image src?
I've tried something like <html:Image src="<%=bean.getValue()%>"/> but it doesn't work, there's something like paramName and paramProperty of html:link tag for html:Image?
thanks in advance
tito
Why not use EL?! Then you could type:
<html:Image src="${bean.value}"/>You just have to remember to type this: <%@ page isELIgnored= "false" %> in the top of the JSP page.
That works for me...
Claus
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

