Controls You Can Use on Web Forms ASP.NET Standard Controls Xml Control
You can use the Xml Web server control to write an XML document, or the results of an XSL Transformation ( XSLT ), into a Web page. The XML output appears in the Web page at the location of the control.
The XML and the XSLT information can be in external documents, or you can include the XML inline.
There are two ways to reference external documents using property settings in the Xml Web server control.
- you can provide a path to the XML document in the control tag, or
- you can load the XML and XSLT documents as objects and then pass them to the control.
If you prefer to include the XML inline, write it between the opening and closing tags of the control.
NOTE: To use XML data as the source for ASP.NET data controls, you can use the XmlDataSource control.
Adding Xml Controls to a Web Forms Page