Xml.DocumentContent Property
Sets a string that contains the XML document to display in the Xml control.
[Visual Basic] Public Property DocumentContent As String [C#] public string DocumentContent {get; set;} [C++] public: __property String* get_DocumentContent(); public: __property void set_DocumentContent(String*); [JScript] public function get DocumentContent() : String; public function set DocumentContent(String);
Property Value
A string that contains the XML document to display in the Xml control.
Remarks
The XML document to display in the Xml control is specified in one of three ways. You can specify a System.Xml.XmlDocument object, an XML string, or an XML file by setting the appropriate property. The DocumentContent property is used to specify an XML string (representing an XML document) to display in the control. The DocumentContent property is not typically programmatically set, or set as an attribute of the control. Instead, the XML string is usually set declaratively by placing text between the opening and closing <asp:Xml> tags of the control.
Note Although the DocumentContent property contains both get and set accessors, only the set accessor is useful. If you use the get accessor, String.Empty is returned.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
Xml Class | Xml Members | System.Web.UI.WebControls Namespace | Document | DocumentSource | Transform | TransformSource