Subject: RE: OpenXML/XSL:P some problem
From: Frederick Chapleau <fchapleau@xxxxxxxxx>
Date: Fri, 15 Oct 1999 10:58:50 -0400
|
Try to insert it in a xsl:comment section and write the javascript code in a
xml file(xml javascript library)...
ex.(very simple):
---> XML
<script>
<![CDATA[
var intLength = 0;
function fcnResetLength()
{
intLength = 0;
return;
}
]]>
</script>
---> XSL
<xsl:template match="script">
<script language="javascript">
<xsl:comment>
<xsl:value-of select="."/>
<xsl:comment>
</script>
</xsl:template>
_____________________
Frédérick Chapleau
fchapleau@xxxxxxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|