T
tanlh_listing
I have the following XML :
<VendorInfo groupName="AA">
<VendorAddress>ABC Building</VendorAddress>
<VendorAddress>Street 77</VendorAddress>
<VendorAddress>LA</VendorAddress>
<VendorAddress>USA</VendorAddress>
<VendorAddress>1234-1234</VendorAddress>
</VendorInfo>
Here is me XSL :
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<HTML><BODY>
Vender Address :
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
</BODY></HTML>
</xsl:template>
</xsl:stylesheet>
Output = 5 lines of "ABC Building"
How do I get it to print the completed address ?
Thanks,
LH
<VendorInfo groupName="AA">
<VendorAddress>ABC Building</VendorAddress>
<VendorAddress>Street 77</VendorAddress>
<VendorAddress>LA</VendorAddress>
<VendorAddress>USA</VendorAddress>
<VendorAddress>1234-1234</VendorAddress>
</VendorInfo>
Here is me XSL :
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<HTML><BODY>
Vender Address :
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
<xsl:value-of select="VendorInfo/VendorAddress"/>
</BODY></HTML>
</xsl:template>
</xsl:stylesheet>
Output = 5 lines of "ABC Building"
How do I get it to print the completed address ?
Thanks,
LH