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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









INamingContainer

System.Web.UI (system.web.dll)interface

This is a marker interface. When ASP.NET renders a control that
implements INamingContainer, it creates a new
namespace and uses it for any child controls. This guarantees that
the child control IDs will be unique on the page. This interface is
used for controls that dynamically generate a series of similar
controls, such as
System.Web.UI.WebControls.Repeater and
System.Web.UI.WebControls.RadioButtonList. If you
are developing your own composite control, you will also need to
implement this interface.

public interface 

INamingContainer {
// No public or protected members
}



Implemented By


TemplateControl,
System.Web.UI.MobileControls.{List,
ObjectList, TemplateContainer},
System.Web.UI.WebControls.{CheckBoxList,
DataGrid, DataGridItem,
DataList, DataListItem,
RadioButtonList, Repeater,
RepeaterItem}


/ 873