I'm using Visual Studio 2008. I have an xsl document that contains text which I want to leave unprocessed durring the xslt transformation. For this purpose I use CDATA tag. But the text is somehow processed within CDATA. all < and > are converted to < and > Here is an example what I mean:
<![CDATA[
<p>What is going on?</p>
]]>
goes
<p>What is going on?</p>
Actually my goal is to let the javascript like this:
<script type="text/javascript">
//<![CDATA[
for(i = 0; i < 3; i++)
document.write("XSLT will you marry me?");
//]]>
</script>
to go unprocessed in a XSL transformation. Can anyone help?