I'm trying to determine the proper way to reference a local XSL stylesheet.
In the XML I have
<?xml-stylesheet type="text/xsl" href="C:/localdir/Generic.xsl"?>
This works in IE regardless of where I put the XML (typically the XML will be opened from an e-mail in our case).
I want to support Firefox. I found that if I change it to be
<?xml-stylesheet type="text/xsl" href="Generic.xsl"?>
it will work, but only if the XML in opened from the same directory as it is located. I would like for it to reference the exact location, so it continues to work with IE, and hopefully with Firefox as well.
Ideas?
Thanks