Re: [xml-dev] how to se the transformed output...
by Bjoern Hoehrmann other posts by this author
Aug 11 2002 2:48AM messages near this date
[xml-dev] how to se the transformed output...
|
Re: [xml-dev] how to se the transformed output...
* 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?
-----------------------------------------------------------------
The xml-dev list is sponsored by XML.org <http://www.xml.org> , an
initiative of OASIS <http://www.oasis-open.org>
The list archives are at http://lists.xml.org/archives/xml-dev/
To subscribe or unsubscribe from this list use the subscription
manager: <http://lists.xml.org/ob/adm.pl>
Thread:
sandr8
Bjoern Hoehrmann
sandr8
sandr8
|