ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









Xmldisposable

System.Web.UI.WebControls (system.web.dll)class

The Xml control is used to display an XML document
on your Web Forms page. To specify the XML document, set the
Document property to a
System.Xml.XmlDocument object, set the
DocumentContent property to a string containing
XML content, or set the DocumentSource property
with a string specifying a filename. If you set more than one
property, the most recent one will take effect.

Optionally, you can specify an XSL Transform document, which will
format the XML document before it is displayed. To specify an XSL
Transform document, set the Transform property to
a System.Xml.Xsl.XslTransform object or set the
TransformSource property with a string specifying
a filename for the XSL file.

public class 

Xml : System.Web.UI.Control {
// Public Constructors
public

Xml ( );
// Public Instance Properties
public XmlDocument

Document {set; get; }
public string

DocumentContent {set; get; }
public string

DocumentSource {set; get; }
public XslTransform

Transform {set; get; }
public XsltArgumentList

TransformArgumentList {set; get; }
public string

TransformSource {set; get; }
// Protected Instance Methods
protected override void

AddParsedSubObject (object

obj ); // overrides System.Web.UI.Control
protected override void

Render (System.Web.UI.HtmlTextWriter

output );// overrides System.Web.UI.Control
}



Hierarchy


System.Object
System.Web.UI.Control(System.ComponentModel.IComponent,
System.IDisposable
,
System.Web.UI.IParserAccessor,
System.Web.UI.IDataBindingsAccessor)
Xml


/ 873