User Profile

Collapse

Profile Sidebar

Collapse
Lowlander
Lowlander
Last Activity: Jan 3 '07, 05:19 PM
Joined: Nov 9 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Lowlander
    replied to how to separate values
    in XML
    I am using this now to separate the values and it works great.

    <xsl:template name="comma-separated-list">
    <xsl:param name="list"/>
    <xsl:value-of select="$list[1]"/>
    <xsl:for-each select="$list[position() > 1]">
    <xsl:choose>
    <xsl:when test="last() > position()">
    <!-- When it is not...
    See more | Go to post

    Leave a comment:


  • Lowlander
    started a topic how to separate values
    in XML

    how to separate values

    All,

    I'm brand new to XSL and have no programming background.

    I try to separate in an HTML output the values returned from an XML file.

    The entry containing the data looks like this:

    <ATTRIBUTE NAME="Users">
    <VALUE>AgentThr ee</VALUE><VALUE>De rekL</VALUE>
    </ATTRIBUTE>

    Using the folowing code only returns the fist VALUE...
    See more | Go to post
No activity results to display
Show More
Working...