I have an XML page with the XSLT embedded in the file. I cannot have an external file for the XSLT in this application. Additionally I must reference the stylesheet in a way that the XML file's name can change. I can do this with...
<?xml-stylesheet type="text/xsl" href="#mySheet"?>
...where...
<xsl:template match="MyMainTag" name="mySheet">
...now this renders PERFECTLY in IE but dies in Firefox. Is there anything I can do to resolve this? I am more than willing to reformat the whole thing if need be.
Regards,