ASP.NET Reference

Button class properties and its descriptions

Web developers can use the Button control to create a push button on the Web page. They can create a Submit or a Command button.

By default, a Button control is a Submit button i.e. does not have a command name specified by the CommandName property and associated with the button. This kind of button simply posts the Web …

Learn more

TextBox class properties and its descriptions

The TextBox server control is used when end user has to enter text. Web developers can determine how server control is displayed using TextBoxMode property. By default, the TextMode of the control is set to TextBoxMode.SingleLine, which displays a single-line text box. Alternatives are TextBoxMode.MultiLine to display a multiline textbox or TextBoxMode.Password to use a text box that …

Learn more

Label class properties and its descriptions

Web developers can use the Label control to display text in a set location on the page. They can customize the displayed text through the Text 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 to the Web server control.
1.0,1.1, 2.0, …

Learn more

WebContol class properties and its descriptions

The WebControl class provides the properties, methods, and events that are common to all controls in the System.Web.UI.WebControls namespace. Web developers can control the appearance and behavior of a Web server control by setting properties defined in this class.

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 …

Learn more