This article demonstrates how to use the XmlTextReader class to read Extensible Markup Language (XML) from a file. Author: Microsoft Code: ASP.NET v2.0 & VB
Because the XmlTextReader exposes a pull model it can push the content it receives from the XML document to a SAX interface. This example shows how to do that and demonstrates more advanced aspects of using the XmlTextReader class. Author: XMLforASP.net Code: ASP.NET v1.0 & VB
This example examines how the XmlTextReader can be used to parse a complex XML document hierarchy to dynamically generate SQL statements that can be executed against a database. Author: Dan Wahlin Code: ASP.NET v1.0 & C#
The XmlTextReader class found in the System.Xml assembly offers a powerful way to traverse XML documents in a forward-only, non-cached manner. Author: unknown Code: ASP.NET Beta 2 & VB