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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









ControlParser

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

This class is used predominantly by the ASP.NET framework. It allows
you to generate a System.Web.UI.Control object
from a string that represents the persisted control. You can perform
this operating using the ParseControl( ) method,
and you can cast the Control to the appropriate
type to interact with it.

public sealed class 

ControlParser {
// Public Static Methods
public static Control

ParseControl (System.ComponentModel.Design.IDesignerHost

designerHost ,
string

controlText );
public static Control

ParseControl (System.ComponentModel.Design.IDesignerHost

designerHost ,
string

controlText , string

directives );
public static ITemplate

ParseTemplate (System.ComponentModel.Design.IDesignerHost

designerHost ,
string

templateText );
public static ITemplate

ParseTemplate (System.ComponentModel.Design.IDesignerHost

designerHost ,
string

templateText , string

directives );
}




/ 873