Page

ASP.NET - How to set, change Panel style

<%@ Page Language="C#" %>  
<%@ Import Namespace="System.Drawing" %>  
  
<!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 Button1_Click(object sender, System.EventArgs e)  
    {  
        Panel1.ForeColor = Color.DeepPink;  
        Panel1.BackColor = Color.AliceBlue;  
        Panel1.BorderWidth = 2;  
        Panel1.BorderColor = Color.SkyBlue;  
        Panel1.Font.Size = FontUnit.Large;  
        Panel1.Font.Name = "Comic Sans MS";  
        Panel1.HorizontalAlign = HorizontalAlign.Center;  
    }  
</script>  
  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head id="Head1" runat="server">  
    <title>How to set, change Panel style programmatically</title>  
</head>  
<body>  
    <form id="form1" runat="server">  
    <div>  
        <h2 style="color:Navy; font-style:italic;">Panel Example: Change Style</h2>  
        <asp:Panel   
             ID="Panel1"  
             runat="server"  
             Height="150"  
             Width="350"  
             >  
             <br />  
             Change Panel Style  
        </asp:Panel>  
        <br /><br />  
        <asp:Button   
             ID="Button1"   
             runat="server"  
             ForeColor="OrangeRed"  
             Text="Change Panel Style"  
             Height="45"  
             OnClick="Button1_Click"  
             Font-Bold="true"  
             />  
    </div>  
    </form>  
</body>  
</html>  

No comments:

Post a Comment