Understanding XSLT transformations: Your Own `XML Transformation Utility`
This article mainly concentrates on the basics of transforming XML documents, along with developing your own utility to transform XML to XSLT using Visual Studio 2005.
If you are new to XML or XSL, I strongly suggest you go through the theory available at the above links. In this section I start immediately with the “Hello World” example.
The “Hello World” example mainly contains two files. The first would be an XML file (Sample1.xml) and the second would be an XSL file (Sample1.xsl). Let us go through the “Sample1.xml” first.
To execute our example, just open “sample1.xml” in Internet Explorer (version 5.5 or above) and it should give you “Hello World” in bold characters. The next section explains the above two files in detail.