Subject: RE: Special characters in xsl
From: Archana Rao <archana_heroor@xxxxxxxxx>
Date: Thu, 23 Oct 2003 11:29:13 -0700 (PDT)
|
This doen'st seem to work i get the following error.
An invalid character was found in text content. Error
processing resource
Archana
--- Jarno.Elovirta@xxxxxxxxx wrote:
> 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
>
__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|