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" />
Value | Description |
---|---|
string | The width of the control. It can be a pixel value, or a percentage value representing the width of the parent object. |
Example
This 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 the Button Control