Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Well, you have 2 method to view them.
The first, and probably the one you found, is to add an <xml-stylsheet> pi to the xml file, and open the xml file in your browser.
Code:
<?xml-stylesheet href="mySheet.xsl" type="text/xsl"?>
The second, is to use a xslt engine to which you specify the xml document and the xsl stylesheet.
No need to declare the xsl in the xml in that case, as you explicitely tell the program which one to use
On a linux machine, with libxslt installed, you have xsltproc for that usage.
I don't know of something similar to windows without buying a product like xmlSpy, though.
__________________
Only a biker knows why a dog sticks his head out the window.
|