[
Lists Home |
Date Index |
Thread Index
]
* sandr8 wrote:
>this part of XSLT code code works under IE but doesn't seem to do what i
>want under Mozilla...
>
> <img>
> <xsl:attribute name="alt">foto di <xsl:value-of
>select="mittente/nome" />:<xsl:value-of select="mittente/cognome" />, alias
><xsl:value-of select="mittente/nick" />, <<xsl:value-of
>select="mittente/mail" />></xsl:attribute>
> <xsl:attribute name="src">
> <xsl:value-of select="mittente/@silouette" />
> </xsl:attribute>
> </img>
More readable:
<img alt='foto di {nome}:{cognome}, alias {nick}, <{mail}>'
src='{@silouette}' />
>is there a way to see the processed output instead of the original input?
For MSXML, there is msxsl.exe, see
http://msdn.microsoft.com/library/en-us/dnxslgen/html/msxsl.asp
Maybe you should use a non browser dependent XSLT processor?
|