I want to output my InnerXml property for display in a web page. I would like to see indentation of the various tags. Is there an easy way to do this?
|
feedback
|
|
Here's a little class that I put together some time ago to do exactly this. It assumes that you're working with the XML in string format.
| |||||||
|
feedback
|
|
You should be able to do this with code formatters. You would have to html encode the xml into the page first. Google has a nice prettifyer that is capable of visualizing XML as well as several programming languages. Basically, put your XML into a pre tag like this:
| ||||
|
feedback
|
|
Use the XML Web Server Control to display the content of an xml document on a web page. EDIT: You should pass the entire XmlDocument to the Document property of the XML Web Server Control to display it. You don't need to use the InnerXml property. | |||
|
feedback
|
|
If identation is your only cocern and if you can afford to launch xternall process, you can process xml file with HTML Tidy console tool (~100K). The code is:
Then you can display idented string on web page once you get rid of special chars. It would be also easy to create recursive function that makes such output - simply iterate nodes starting from the root and enter next recursion step for child node, passing identation as a parameter to each new recursion call. | |||
|
feedback
|
|
Check out the free Actipro CodeHighlighter for ASP.NET - it can neatly display XML and other formats. Or are you more interested in actually formatting your XML? Then have a look at the XmlTextWriter - you can specify things like Format (indenting or not) and the indent level, and then write out your XML to e.g. a MemoryStream and read it back from there into a string for display. Marc | |||
|
feedback
|
|
Use an XmlTextWriter with the XmlWriterSettings set up so that indentation is enabled. You can use a StringWriter as "temporary storage" if you want to write the resulting string onto screen. | |||
|
feedback
|