Phil,

I'm trying to do something very similar (below) where I'm running into
the need to embed tags somehow.  Have you found anything that might be
helpful?

<html:image imageName="buttonCancel" srcKey="image.buttonCancelOff"
altKey="altText.buttonCancel"
onmouseover="javascript:this.src='<bean:message
key="image.buttonCancelOn"/>';"
onmouseout="javascript:this.src='<bean:message
key="image.buttonCancelOff"/>';" onclick="javascript:cancelOrder();"/>

altText.buttonCancel=Cancel
image.buttonCancelOff=images/en-us/button_cancel_off.gif
image.buttonCancelOn=images/en-us/button_cancel_on.gif


Your code doesn't seem as complicated, so you might try...

<html:img srcKey="project.nsync.Header.url"
altKey="project.nsync.Header.alt"/>

project.nsync.Header.alt=Welcome Header Logo
project.nsync.Header.url=images/Header.jpg

Eric


-----Original Message-----
From: Stephen LeClair 
Sent: Friday, July 27, 2001 11:30 AM
To: Eric Mosley
Subject: RE: Imbedding tags in a <html:img> tag



-----Original Message-----
From: Phil Maher [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 12, 2001 3:26 PM
To: [EMAIL PROTECTED]
Subject: Imbedding tags in a <html:img> tag


Hi,

I've having the problem of embedding tags in a <html:img> tag. 
For example, If I have the line:

<html:img src="images/Header.jpg" ALT="<bean:message
key="project.nsync.Header.alt"/>" />

Where the below is in ApplicationResources.properties: 

project.nsync.Header.alt=Welcome Header Logo

Does anyone know how to do this? 

Reply via email to