asp.net 2.0

Xml class properties and its descriptions

The Xml control is used to display the contents of an XML document without formatting or using XSL Transformations, by setting one of three properties. Web developer can display You a System.Xml.XmlDocument, an XML string, or an XML file by setting the appropriate property:

–          Document – Sets the XML document using a System.Xml.XmlDocument object. –          DocumentContent – Sets …

Learn more

MultiView class properties and its descriptions

The MultiView control works as a container for a group of View controls. Web developer can use it to define a group of View controls, where each View control contains child controls. Web application can then render a specific View control to the client based on criteria such as user identity, user preferences, and information passed in a …

Learn more

HiddenField class properties and its descriptions

Web developers can use the HiddenField control to store a value that needs to be persisted across posts to the server. It is rendered as an <input type= “hidden”/> element. Normally the state of a Web Forms page is maintained by view state, session state, and cookies. If these methods are disabled or are not available, Web developers …

Learn more

PlaceHolder class properties and its descriptions

The PlaceHolder control is used as a container to store server controls that are dynamically added to the Web page. The PlaceHolder control does not produce any visible output and is used only as a container for other controls on the Web page. Web developers can use the Control.Controls collection to add, insert, or remove a control in …

Learn more

TreeView class properties and its descriptions

Web developers use the TreeView control to display hierarchical data, in a tree structure, such as a table of contents or file directory. The TreeView control can be used inside an UpdatePanel only when EnableClientScript is set to true. By using UpdatePanel controls selected regions of a Web page can be updated instead of the whole page with …

Learn more

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