Removing Namespaces from XSL Transform output
Does anyone know of a way to remove namespaces?
I've recently created an XSL to transform another piece of XML but the result includes two namespaces that I do not want.
<?xml version="1.0" ?>
<ROOTNODE xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:Testing="urn:my-scripts">
All I want is;
<?xml version="1.0" ?>
<ROOTNODE>
Any help would be most appreciated.
Cheers,
Francis
|