Hello,
I have to write an xslt file to access to a CDATA element:
Code:
<root>
         Other text
         <tag> <![CDATA[<mytag>]]> </tag>
</root>
How can I retrieve "<mytag>"? With //tag/text() I obtain "other Text"....
Hints, please?

Cheers