xsl:attribute question

Subject: xsl:attribute question
From: Clay_Rowland@xxxxxxxxxxx
Date: Fri, 3 Dec 1999 15:43:22 -0500

i would like to set a hidden input attribute value using an xsl stylesheet and
an xml document.  the hidden input is an address.  my problem is that the adress
is made up of three pieces of xml data.

<housenumber>111</housenumber>
<streetname>Main</streetname>
<streetsuffix>St.</streetsuffix>

if i do this:

<input type="hidden" name="Address">
     <xsl:attribute name="VALUE">
          <xsl:value-of select="/housenumber"/><xsl:value-of
select="/streetname"/><xsl:value-of select="/streetsuffix"/>
     </xsl:attribute>
</input>

the output is this:  111MainSt.

if i do this:

<input type="hidden" name="Address">
     <xsl:attribute name="VALUE">
          <xsl:value-of select="/housenumber"/>
          <xsl:value-of select="/streetname"/>
          <xsl:value-of select="/streetsuffix"/>
     </xsl:attribute>
</input>

the output is this:

111
Main
St.

if i put spaces betwee the xsl:value-of tags, the output is on three lines as
well.  does anyone know how i can get the data to look like this:

111 Main St.


thanks.



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


Current Thread