ASP.NET Tutoria...login
ASP.NET Tutorial
author:php.cn  update time:2022-04-11 14:18:18

PlaceHolder control


ASP.NET PlaceHolder Control


up.gif Web server control

Definition and usage

PlaceHolder control Used to reserve space for controls added by code.

Note: PlaceHolder does not produce any visible output (it is just a container for other controls on the web page).


Properties

PropertiesDescription
runatSpecifies that the control is a server. Must be set to "server".

Web control standard properties

AccessKey, Attributes, BackColor, BorderColor, BorderStyle, BorderWidth, CssClass, Enabled, Font, EnableTheming, ForeColor, Height, IsEnabled, SkinID, Style, TabIndex, ToolTip, Width

For a complete description, visit Web Control Standard Properties.

Control Standard Properties

AppRelativeTemplateSourceDirectory, BindingContainer, ClientID, Controls, EnableTheming, EnableViewState, ID, NamingContainer, Page, Parent, Site, TemplateControl, TemplateSourceDirectory, UniqueID, Visible

For a complete description, visit Control Standard Properties.


up.gif Web Server Control

php.cn