xsl-list
[Top] [All Lists]

RE: Special characters in xsl

2003-10-23 10:08:43
Hi,

I want to have a tag that looks as below.
<TAG>Creating Your(tm) Applications</TAG>

My xsl will be
<h4><xsl:value-of select="TAG" /></h4>

I get an error when i try to display this using my
xsl, what am i missing here?

Silly me, you're using a Literal Result Element as a stylesheet. You need to 
declare the XSLT namespace and the version. Thus your stylesheet becomes

  <h4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
xsl:version="1.0"><xsl:value-of select="TAG" /></h4>

Cheers,

Jarno - Madam Zu: September 2002 Mix

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



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