Xml.DocumentContent Property

Sets a string that contains the XML document to display in the Xml control.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
property String^ DocumentContent {
	String^ get ();
	void set (String^ value);
}
/** @property */
public String get_DocumentContent ()

/** @property */
public void set_DocumentContent (String value)

public function get DocumentContent () : String

public function set DocumentContent (value : String)

Property Value

A string that contains the XML document to display in the Xml control.

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.

NoteNote

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.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0

Community Additions

ADD
Show: