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: How to get the value of an attribute


Christian

>In template name="templ" I want to retrieve the value of the attribute
>"attribute". I tried <xsl:value-of select="$par[@attribute]"/> but that
>doesn't work. I also tried various flavours using curly brackets and stuff
>but I don'tget it to work the way I want.

Try: <xsl:value-of select="$par/@attribute"/> - $par[@attribute] selects
the $par element that has a value for the 'attribute' attribute, so the
value is the content of the $par element.

Cheers,

Jeni

Dr Jeni Tennison
Epistemics Ltd, Strelley Hall, Nottingham, NG8 6PE
Telephone 0115 9061301 • Fax 0115 9061304 • Email
jeni.tennison@epistemics.co.uk



 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]