ASP.NET Reference

TableRow class properties and its descriptions

The TableRow class represents a row in a Table control and can be used to control how the contents of the row are displayed. The alignment of the contents in the row are specified by setting the HorizontalAlign and VerticalAlign properties. Web developer can programmatically manage the cells in the row by using the Cells collection. The Cells …

Learn more

TableCell class properties and its descriptions

The TableCell class represents a cell in a Table control and can be used to control how the contents of the cell are displayed. Web developer can use the Text property to determine the contents of the cell. The alignment of the contents in the cell are specified by setting the HorizontalAlign and VerticalAlign properties. The Wrap property …

Learn more

Table class properties and its descriptions

Web developers use the Table control to build an HTML table and determine its characteristics. A table can be built at design time given some static content, but the power of a Table Web server control is often realized when the table is built programmatically with dynamic contents.

Web developers should remember that any programmatic addition or modification of …

Learn more

ImageMap class properties and its descriptions

Web developers can use the ImageMap control to create an image that contains defined hot spot regions. When users click a hot spot region, the control can either generate a postback to the server or navigate to a specified URL. This This control can also be used to generate a postback to the server and run specific code …

Learn more

Image class properties and its descriptions

The Image control is used to display any valid image supported by the requesting browser on the Web page. The path to the displayed image is specified by setting the ImageUrl property. Web developers can determine the text to display in place of image when the image is not available by setting the AlternateText property. The alignment of …

Learn more

FileUpload class properties and its descriptions

The FileUpload class displays a text box control and a browse button that enable end users to select a file on the client and upload it to the Web server. The user specifies the file to upload by entering the full path of the file on the local computer (for example, C:\My Documents\MyTestFile.doc) in the text box of …

Learn more

HyperLink class properties and its descriptions

Web developers can create a link to another Web page by using the HyperLink control which is typically displayed as text specified by the Text property. It can also be displayed as an image specified by the ImageUrl property.

If both the Text and ImageUrl properties are set, the ImageUrl property takes precedence. If the image is unavailable, the …

Learn more

RadioButtonList class properties and its descriptions

Web developers can use the RadioButtonList control as a single-selection radio button group that can be dynamically generated through data binding. The control contains an Items collection with members that correspond to individual items on the list. To determine which item is selected, the SelectedItem property of the list must be tested.

Web developers can determine the rendering of …

Learn more

AdRotator class properties and its descriptions

The AdRotator control is used to display a randomly selected advertisement banner on the Web page. The displayed baner changes whenever the page refreshes.

Advertisement information is stored in a separate XML file which maintains a list of advertisements and their associated attributes. Attributes include the path to an image to display, the URL to link to when the …

Learn more

RadioButton class properties and its descriptions

The RadioButton server control permits Web developers to intersperse the radio buttons in a group with other content in the page. The buttons can be grouped logically if they all share the same GroupName property.

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

Property
Description
Supported in .NET version

AccessKey
This property returns or sets the access key that allows software developer to quickly navigate …

Learn more