Hi,
I got a default namespace as xmlns="path/to/default/namespace/" in my xml file, and following is what I am using for xsl file:
Code:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:h="path/to/default/namespace/"
exclude-result-prefixes="h"
xmlns="http://www.w3.org/1999/xhtml">
It is not working, just breaks the page. when I remove the attribute xmlns from xml file then it works fine, but with default namespace it doesn't.
Is there anyone tell me how can i get it working with default namespace?
Thanks.