How to set, change Label ForeColor (font, text color) programmatically
LabelForeColor.aspx
<%@ 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 Button1_Click(object sender, System.EventArgs e)
{
Label1.ForeColor = System.Drawing.Color.Magenta;
}
protected void Button2_Click(object sender, System.EventArgs e)
{
Label1.ForeColor = System.Drawing.Color.DodgerBlue;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>How to set, change label ForeColor (font, text color) programmatically</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:Navy">Label Example: ForeColor</h2>
<asp:Label
ID="Label1"
runat="server"
Text="Click the Button for change Label color."
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
ForeColor="SeaGreen"
Text="Label ForeColor Magenta"
OnClick="Button1_Click"
Font-Bold="true"
/>
<asp:Button
ID="Button2"
runat="server"
Font-Bold="true"
ForeColor="SeaGreen"
Text="Label ForeColor DodgerBlue"
OnClick="Button2_Click"
/>
</div>
</form>
</body>
</html>
- How to set, change Label font size programmatically
- How to show, hide, visible Label programmatically
- How to set, change Label text style programmatically
- How to set, change Label height programmatically
- How to set, change Label text on page Load
- How to set, change Label width programmatically
- How to use tool tip (ToolTip) in Label
- How to use AutoPostBack feature in TextBox
- How to set, change TextBox BackColor (background color)
- How to set, change TextBox border color