In this article we'll look at using the XmlTextWriter class to create XML documents on the fly. The XmlTextWriter class contains a number of methods that are useful for starting and completing an XML document.
Author: Scott Mitchell Code: ASP.NET v1.0 & VB
This sample application demonstrates how to use the XmlTextWriter class in conjunction with an XML mapping file to convert flat-file data (delimited and fixed-length) to XML.
Author: xmlforasp.net Code: ASP.NET v1.0 & C#
When you need to format XML to make it more readable, you can use the .NET platform's XmlTextWriter class to accomplish the task with a minimal amount of work.
Author: Dan Wahlin Code: ASP.NET v1.1 & C#
The .NET platform provides classes in the System.Xml namespace that you can use to filter undesirable nodes out of an XML doc quickly without consuming large amounts of memory. I'll show you how to do this with XmlTextWriter and XmlTextReader classes.
Author: Dan Wahlin Code: ASP.NET v1.1 & C#