This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

xsl:element


I got some which is confusing me a lot.Either Im doing some basic mistake or
something wrong with my code.

xml

<years title="year" century="20th" month="April" Day="Thursday"></years>

xsl

<xsl:output method="xml"/>
	<xsl:template match="years">
		<xsl:element name="{@title}">2000</xsl:element>
		<xsl:value-of select="@title"/>
		<xsl:element name="IMG">
			<xsl:attribute name="SRC">wrose.jpg</xsl:attribute>
		</xsl:element>  
		<xsl:element name="FONT">
			<xsl:attribute name="SIZE">4</xsl:attribute>
			<xsl:attribute name="FACE">Courier
New</xsl:attribute>Checking the xsl:element Usage
		</xsl:element>
	</xsl:template>


What will be the output for xsl:element name="{@title}".This has been
discussed 2 days back.But for some reason my html output has only 2000 and
not <year>2000</year> and in rest of the xsl:element also,the img and the
font is executed in my html and Im not getting the xml format.Why?

Francis




*****************************************************
The woods are lovely,dark and deep.         
But I have promises to keep,                      
And miles to go before I sleep                   
And miles to go before I sleep.                   
*****************************************************


 


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]