Output XML->HTML
-
I made an XML report, but the problem is that some of the report viewers are using non-IE browsers, which usually don't understand XML. Is there a way to pre-parse/transform XML into HTML? There must be, because the XML is turned into HTML before being displayed in the browser.
"Do unto others as you would have them do unto you." - Jesus
"An eye for an eye only makes the whole world blind." - Mahatma Gandhi -
I made an XML report, but the problem is that some of the report viewers are using non-IE browsers, which usually don't understand XML. Is there a way to pre-parse/transform XML into HTML? There must be, because the XML is turned into HTML before being displayed in the browser.
"Do unto others as you would have them do unto you." - Jesus
"An eye for an eye only makes the whole world blind." - Mahatma GandhiIf you write an XSLT style sheet you can use the MSXML (or most other) DOM to perform the transformation for you using DOMDocument::transformNode method...
-
I made an XML report, but the problem is that some of the report viewers are using non-IE browsers, which usually don't understand XML. Is there a way to pre-parse/transform XML into HTML? There must be, because the XML is turned into HTML before being displayed in the browser.
"Do unto others as you would have them do unto you." - Jesus
"An eye for an eye only makes the whole world blind." - Mahatma Gandhi