ASP.NET Height Property

Definition and Usage

The Height property is used to set or return the height of the control.

Syntax

<asp:webcontrol id="id" Height="value" runat="server" />
Property Description
value The height 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 height of the button control:

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

Example

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