Alright this seems like a stupid question but I can\'t figure it out. I\'m writing an XSLT file to translate an XML document into an XHTML document. I\'ve used both Visual S
You have two options:
Let the browser do it. Pass the XML with a reference to the XSLT and the browser (IE 6 or lower might have problems) will render it as (X)HTML:
Do it server-side. Most languages have methods for accepting XSLT and XML data, then outputting (X)HTML. Here are some options: