xsl-list
[Top] [All Lists]

Simple XSL but having problems

2004-05-11 09:02:22
Here is my xml layout

<a>
   <b>
       <c1>test1</c1>
       <c2>test2</c2>
   </b>
   <b>
   <b>
       <c1>test3</c1>
       <c2>test4</c2>
   </b>
</a>

and i want to show c1 and c2 so i have this 

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
        <xsl:template match="/">
                        <xsl:for-each select="a/b">
                                <xsl:value-of select="c1"/>
                                ::
                                <xsl:value-of select="c2"/>
                                ;;
                        </xsl:for-each>:|*|:
        </xsl:template>
</xsl:stylesheet>  


however all i get is :|*|:

what did i do wrong (please no rebukes I am trying to understand this and I 
think this structure should work its easy enough)

Thanks !!!!!

---------------------------------------------------------------------------------------------
Dylan Barber                              :  AOL Messenger - dylanbarb
(CIW Professional, A+ Technician): MSN Messenger - 
dylan(_dot_)barber(_at_)earthlink(_dot_)net
Web Designer / Developer / Host
---------------------------------------------------------------------------------------------


Clip those URLs! - Short links are easier to remember.
http://clipurl.com



<Prev in Thread] Current Thread [Next in Thread>