asp.net 2.0

HtmlHead class properties and its descriptions

The HtmlHead control allows programmatic access to the HTML head element in server code. The HTML head element is a container that can contain additional information about the page and the HtmlHead control is useful for specifying page formatting information that can be accessed at run time.

Namespace: System.Web.UI.HtmlControls Assembly: System.Web (in System.Web.dll)

Property

Description

Supported in .NET version

Adapter

This property …

Learn more

HtmlSelect class properties and its descriptions

Web developers use the HtmlSelect control to create a selection box. They can determine item listings in the control by placing HTML <option> elements between the opening and closing <select> tags. Each item is represented by a System.Web.UI.WebControls.ListItem object.  Developers can specify the text that is displayed for each item in the control, by setting the ListItem.Text property …

Learn more

HtmlImage class properties and its descriptions

Web developers use this control to display an image on a Web page. The HtmlImage control can be programmatically manipulated to change the image displayed, the image size, and the alignment of the image relative to other page elements.

Namespace: System.Web.UI.HtmlControls Assembly: System.Web (in System.Web.dll)

Property

Description

Supported in .NET version

Adapter

This property gets the browser-specific adapter for the control. If …

Learn more

HtmlForm class properties and its descriptions

The HtmlForm control allows programmatic access to the HTML <form> element on the server. The control is a container for server controls on a Web Forms page and all server controls that post back to the server must be placed between its opening and closing tags. Web developer can control the behavior of the HtmlForm control by setting …

Learn more

HtmlButton class properties and its descriptions

The HtmlButton control allows programmatic access to the HTML <button> element on the server. To perform a set of custom instructions when the HtmlButton control is clicked, Web developer has to provide a custom event handler for the ServerClick event. The HtmlButton control renders ECMAScript to the client browser which must have ECMAScript enabled for this control to …

Learn more

HtmlAnchor class properties and its descriptions

The HtmlAnchor control allows programmatic access to the HTML <a> element on the server. There are two possible ways to use the class:

–          for navigation: using the HRef property to define the location of the page to link to –          for postback events: using the ServerClick event to programmatically handle the user’s clicking a link

Namespace: System.Web.UI.HtmlControls Assembly: System.Web …

Learn more

Panel class properties and its descriptions

The Panel control works as container for other controls and it is useful when Web developer wants to generate controls programmatically, hide/show a group of controls, or localize a group of controls. The Panel control provides several properties that allow you to customize the behavior and display of its contents.

Namespace: System.Web.UI.WebControls Assembly: System.Web (in System.Web.dll)

Property

Description

Supported in .NET version

AccessKey

This …

Learn more

Style class properties and its descriptions

The Style class encapsulates the properties that control the appearance of a Web server control and can be applied to multiple Web server controls to provide a common appearance. Web developer can determine the background color and font color of a control by setting the BackColor and ForeColor properties, respectively. On controls that can display a border, Web …

Learn more

View class properties and its descriptions

The View control acts as a container for a group of controls and must always be contained within a MultiView control. Only one View control at a time can be defined as the active view, by the ActiveViewIndex property, within the Views collection of a MultiView control. The active view control and its child controls are visible on …

Learn more

BulletedList class properties and its descriptions

Web developers use the BulletedList control to create a list of items that are formatted with bullets.  The list of items which appears in the control is built from individual ListItem object for each entry placed between the opening and closing tags of the BulletedList control. Web developer can determine how list items are displayed in a BulletedList …

Learn more