<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Button2_Click(object sender, System.EventArgs e)
{
Button1.Height = 35;
}
protected void Button3_Click(object sender, System.EventArgs e)
{
Button1.Height = 50;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>How to set, change Button height programmatically</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Navy">Button Example: Height</h2>
<asp:Button
ID="Button1"
runat="server"
Text="Test Button Height"
ForeColor="SeaGreen"
Font-Bold="true"
/>
<br /><br />
<asp:Button
ID="Button2"
runat="server"
Text="Button Height 35"
OnClick="Button2_Click"
/>
<asp:Button
ID="Button3"
runat="server"
Text="Button Height 50"
OnClick="Button3_Click"
/>
</div>
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Button2_Click(object sender, System.EventArgs e)
{
Button1.Height = 35;
}
protected void Button3_Click(object sender, System.EventArgs e)
{
Button1.Height = 50;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>How to set, change Button height programmatically</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Navy">Button Example: Height</h2>
<asp:Button
ID="Button1"
runat="server"
Text="Test Button Height"
ForeColor="SeaGreen"
Font-Bold="true"
/>
<br /><br />
<asp:Button
ID="Button2"
runat="server"
Text="Button Height 35"
OnClick="Button2_Click"
/>
<asp:Button
ID="Button3"
runat="server"
Text="Button Height 50"
OnClick="Button3_Click"
/>
</div>
</form>
</body>
</html>
No comments:
Post a Comment