xsl-list
[Top] [All Lists]

RE: Generating a CSV file using XSLT

2005-02-09 04:24:45
Hi

Instead of the following :-

<xsl:value-of
select="normalize-space(WorkPerformed/PropertyInformation/PropertyLocati
on/PropertyAddress/)"/>,

Use following :-

<xsl:apply-templates select="(WorkPerformed/PropertyInformation/PropertyLocati
on/PropertyAddress/)"/>

And then define another template :-

<xsl:template match="PropertyAddress">
    <xsl:value-of select="." />
</xsl:template>

Hope the above helps.

Cheers.

Arun

_________________________________________________________________
Try the all-new MSN Search! Find exactly what you want. http://search.msn.co.in Get more value for your time.


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--