ASP.NET Width Property

Definition and Usage

The Width property is used to set or return the width of the control.

Syntax

<asp:webcontrol id="id" Width="value" runat="server" />
Property Description
value The width of the control. It must be a pixel value or a percentage value representing the height of the parent object.

Example

The following example sets the width of the button control:

<form runat="server">
<asp:Button id="button1" Text="Submit"
Width="150px" runat="server" />
</form>

Example

Set the Width of Button Control (with declaration and script)