ASP.NET Width Property


Style Control Reference Complete Style Control Reference

Definition and Usage

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

Syntax

<asp:webcontrol id="id" Width="value" runat="server" />

Attribute Description
value The width of control. Must be a number representing pixels or a percent value representing the parent objects width


Example

The following example sets the width of a button control:

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

Show example »

Style Control Reference Complete Style Control Reference

Color Picker

colorpicker