Re: [xsl] Problems With Passing HTML Needing Quotes

Subject: Re: [xsl] Problems With Passing HTML Needing Quotes
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Tue, 02 Jul 2002 20:08:01 +0200
<img height="300" width="300" src="/transform/content/JJJ/JJJ_customer/jjj.gif" />

All attributes *must* be quoted. This won't give you an error, it must be at another place in your code.

You can try

<img src="/transform/content/JJJ/JJJ_customer/jjj.gif">
  <xsl:attribute name="height">300</xsl:attribute>
  <xsl:attribute name="width">300</xsl:attribute>
</img>

but it's longer and no difference in the logic. Again: Have a look at the rest of the code.

Regards,

Joerg


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread