Subject: RE: XSLT Simple Transformation?
From: "Lars Huttar" <lars_huttar@xxxxxxx>
Date: Tue, 28 Oct 2003 16:12:29 -0600
|
Without looking much at the rest of your XML or stylesheet,
I would change
<xsl:variable name="temp" select="SETID"/>
<SETID><xsl:value-of select="concat($temp,01)"/></SETID>
to
<SETID><xsl:value-of select="SETID" />01</SETID>
If you use concat(), you should put the 01 in quotes:
select="concat($temp,'01')"
Lars
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- XSLT Simple Transformation?
- HSA - Tue, 28 Oct 2003 16:55:24 -0500 (EST)
- Lars Huttar - Tue, 28 Oct 2003 17:13:13 -0500 (EST) <=
- <Possible follow-ups>
- cknell - Tue, 28 Oct 2003 17:20:26 -0500 (EST)
|
|