Re: [xsl] More newbie questions

Subject: Re: [xsl] More newbie questions
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 23 Mar 2005 11:19:13 GMT
  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
________________________________________________________________________

Current Thread