Hello ppl,
I would like to know the best practice to display a simple XML document as it is on
the browser. say I have an XML document called vector.xml which looks like:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE class SYSTEM "collection.dtd">
<class>
<info>
public class Vector
extends AbstractList
implements List, RandomAccess, Cloneable, Serializable
The Vector class implements a growable array of
objects. Like an array, it contains components that can
be accessed using an integer index. However, the size
of a Vector can grow or shrink as needed to accommodate
adding and removing items after the Vector has been
created.
</info>
</class>
====================================================================
What would be the best practice to display the contents of <info> element on the
browser as it is without disturbing the allignments, linebreaks etc etc ...
In other words just display it as it looks inside the <info> element.
Any body ....
sam