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]

RE: generating text from an attribute


->-----Original Message-----
->From: Foster, Justin (IT_Architecture) [mailto:JFoster@russell.com]
->Subject: generating text from an attribute
->
->
->Here's a newbie question.
->
->How do I generate the value of a attribute as text:
->
->i.e.
->
-><ROOT>
->	<PARENT>
->		<CHILD name="Bob" age="20"/>
->	</PARENT>
-></ROOT>
->
->
->I want to output to html:
->
-><HTML>
-><HEAD>
-></HEAD>
-><BODY>
->My name is Bob.  I am 20 years old.</BODY>
-></HTML>

You need something like:

<xsl:template name="PARENT">
  My name ist <xsl:value-of select="CHILD/@name"/>. I am <xsl:value-of
select="CHILD/@age"/> years old.
</xsl:template>

if you have multiple childs add a <xsl:foreach select="CHILD"> ... </..> and
change CHILD/@name to @name

Frank
-
Work is the curse of the drinking class. (Oscar Wilde)
Frank Spychalski                   frank@spychalski.de


 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]