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

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

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

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

G. andrew Duthie; matthew Macdonald

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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









PlaceHolderdisposable

noshade="true" align="left" color="black">
System.Web.UI.WebControls (system.web.dll)class

This class represents a
"placeholder" control, which is a
container used to store controls that may be added to a page
dynamically at some point in its processing. Placeholders prevent an
HTML page from "collapsing." For
example, if you create a text box control and set the
TextBox.Visible property to
False, no HTML will be rendered for the control.
This could cause the layout of the page to change unexpectedly,
particularly with tables. Placeholders avert this problem. To add a
control to a placeholder, use Add( ). Note that
placeholders, unlike most web controls, derive directly from
System.Web.UI.Control, not from
WebControl.

public class 

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

PlaceHolder ( );
}



Hierarchy


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

PlaceHolder


/ 873