xsl-list
[Top] [All Lists]

Re: More newbie questions

2005-03-23 04:19:13


  Again, I am trying to make the value of
  Database/@DatabaseName appear in each instance of the
  DATA tag.

well no actually, you want it to be in the DATA element, ie between the
two tags <DATA> and </DATA> The only thing that goes in a tag is the
element name and attribute markup. (People often seem to use "tag" to
mean element but it's very confusing to do so.)

                <xsl:value-of select="/Root/Database/@DatabaseName"
You can also simplify

<xsl:element name="DATA">
        <xsl:element name="COLLECNAME">
                <xsl:value-of select="??????/Database/@DatabaseName"


to

<DATA>
  <COLLECTNAME>
        <xsl:value-of select="/Root/Database/@DatabaseName"
...

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



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