xsl-list
[Top] [All Lists]

RE: Special characters in xsl

2003-11-24 15:41:03
Hello,

Its difficult to understand your problem because you really should give us
an indicative source xml and your xslt...and the desired result. So I have
made my best guess.


Xslt file

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
        <xsl:output method = "html"/>
        
        <xsl:template match="/">        
                <html>
                        <title></title>
                        <body>
                        
                        <table>
                        <tr>
                        <td valign="top" class="text" align="left"
bgcolor="#ffffff">
                        <xsl:value-of select="VALUE"/>
                        </td>
                        </tr>
                        </table>
                        
                        </body>
                </html>
        </xsl:template>
</xsl:stylesheet>

Xml file

<?xml version="1.0" ?>
<VALUE>test
</VALUE>        

Works for me, you might want to also give us a hint as to what processor,
platform, version....... I don't see any issue with the code, other then you
probably are not giving us the information to help you any better.

gl, Jim Fuller


-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com] On Behalf Of 
Archana Rao
Sent: Monday, November 24, 2003 9:45 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com

When i try to display the line below i get the
following error.

<td valign="top" class="text" align="left"
bgcolor="#ffffff">
        <xsl:value-of select="VALUE" />
</td>

ERROR, 
A name was started with an invalid character. Error
processing resource, 
<VALUE>-.&'()_!?*#%":+<>=?!></\@,~{}$[]^;</VALUE> 

How should i deal with this.

TIA,
Archana

__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

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


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



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