This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

how 2 make XML pretty display in browser


Hello List,
This is kind of a silly question, but does anyone know if there is anything
in xsl which can ensure that an xml file streamed back through an
application will display nicely in IE5.  You know the kind of display I'm
talking about, where you can open and close the nodes and stuff like that.

I'm currently sending an XML file back to a client's browser and all the
data shows up without the surrounding XML syntax.  Its a big long string of
numbers.

I've tried sending it through an intermediate copier:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="xml"/>
	<xsl:template match="/">
		<xsl:copy-of select="node()"/>
	</xsl:template>
</xsl:stylesheet>


But get the same result.  Does anyone know how to force IE to pretty
display?

Thanks,
Alex


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]