> Hi,
> I'm trying to write xsl to produce following file :
>
> <html>
> ......
> <!Name Function="Save">
> ......
> </html>
> I have a problem with writing element with mark of
> exclamation (<!...>).
Your XSLT stylesheet is XML and XML doesn't allow exclamation marks in
element names. If your output isn't XML, use something in the lines of
<xsl:text disable-output-escaping="yes"><!Name
Function="Save"></xsl:text>
if your engine supports disable-output-escaping.
Jarno
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|