Re: [xsl] Unwanted New Line on Output

Subject: Re: [xsl] Unwanted New Line on Output
From: "Manfred Staudinger" <manfred.staudinger@xxxxxxxxx>
Date: Mon, 18 Jun 2007 12:13:45 +0200
Hi Matt,

<DEPT>
  1
  <EMPS>
so your $deptID does include a newline

<xsl:value-of select="$deptID"/>
should become
      <xsl:value-of select="substring-before($deptID, '&#10;')"/>
(not tested)

Hope this helps,

Manfred

Current Thread