Link to home
Start Free TrialLog in
Avatar of allmer
allmerFlag for Türkiye

asked on

XSLT working in Netscape, but fails in IE due to PCDATA error, what to do?

Hi Experts,
the error I get in IE is:
Keyword xsl:stylesheet may not contain PCDATA nodes.

I have the following XML:

<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet href="dnml.xsl" type="text/xsl"?>
<Source>
<Spectrum charge="2" isotope_distribution="monoistopic" mz="1184.9453" id="jaTest_1ac_070472.893.895.2.dta">
      <peak_list type="free_peak_list" location="contained">
                 </peak_list>
.....
</Spectrum>
</Source>

Thanks,
Jens
ASKER CERTIFIED SOLUTION
Avatar of Gertone (Geert Bormans)
Gertone (Geert Bormans)
Flag of Belgium image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of allmer

ASKER

Thanks,
that was already enough help ;)
I missed a double closing >

</xsl:template>>
Netscape was fine where IE crashed.
-Jens