RE: [xsl] Special characters in xsl

Subject: RE: [xsl] Special characters in xsl
From: Jarno.Elovirta@xxxxxxxxx
Date: Thu, 23 Oct 2003 20:08:43 +0300
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


Current Thread