I have the following simple problem: I have some data in an XML file that i want to display in the content area of my HTML page. I also have a stylesheet (.xsl) for my XML file. When I open the XML in my browser it looks exactly what i want it to look like. However, i don't know how to embed the transformed xml (which is xhtml) in my existing HTML page. What I have so far is:
<a href="data/movielist.xml">Movie List</a>
Of course this Code just creates a link to a new page, where only the xml is displayed, instead of including the whole thing in my html...
Is there any elegant solution for this? IFrames come to my mind but i'd like to avoid them because they are so horribly outdated.
Thanks in advance.