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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









ControlPersister

System.Web.UI.Design (system.design.dll)sealed class

This class provides shared (static) helper methods that retrieve the
information used to persist a control and its state. For example, the
PersistControl( ) method returns a string that
looks very similar to the control tag used in the
.aspx file, with the named class used instead of
the "asp:" prefix. Typically, this
class is used only by the IDE.

public sealed class 

ControlPersister {
// Public Static Methods
public static string

PersistControl (System.Web.UI.Control

control );
public static string

PersistControl (System.Web.UI.Control

control , System.ComponentModel.Design.IDesignerHost

host );
public static void

PersistControl (System.IO.TextWriter

sw , System.Web.UI.Control

control );
public static void

PersistControl (System.IO.TextWriter

sw , System.Web.UI.Control

control ,
System.ComponentModel.Design.IDesignerHost

host );
public static string

PersistInnerProperties (object

component , System.ComponentModel.Design.IDesignerHost

host );
public static void

PersistInnerProperties (System.IO.TextWriter

sw , object

component ,
System.ComponentModel.Design.IDesignerHost

host );
}




/ 873