Hey guys,
If you are displaying the result in the browser surely you need to include HTML tags to get the output formatted.
A minimum would be <br /> to get linebreaks or, even better, a table.
For example:
<xsl:template match="dataroot">
<html>
<head>
</head><body>
[code with HTML tags]
</body></html>
</xsl:template>
... but maybe I missed something or am over-simplifying?
Regards,
Alan Searle.
|