Define function to change Label Font to Italic (C#)
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load()
{
MakeItalic(Label1, CheckBox1.Checked);
MakeItalic(Label2, CheckBox2.Checked);
MakeItalic(Label3, CheckBox3.Checked);
}
void MakeItalic(Label TargetLabel, bool ItalicYN)
{
TargetLabel.Font.Italic = ItalicYN;
}
</script>
<html>
<head>
<title>Parameter Web Controls</title>
</head>
<body>
<form runat="server">
<table>
<tbody>
<tr>
<td>
<asp:CheckBox id="CheckBox1" runat="server"></asp:CheckBox>
</td>
<td>
<asp:CheckBox id="CheckBox2" runat="server"></asp:CheckBox>
</td>
<td>
<asp:CheckBox id="CheckBox3" runat="server"></asp:CheckBox>
</td>
</tr>
<tr>
<td>
<asp:Label id="Label1" runat="server" text="Label1"></asp:Label></td>
<td>
<asp:Label id="Label2" runat="server" text="Label2"></asp:Label></td>
<td>
<asp:Label id="Label3" runat="server" text="Label3"></asp:Label></td>
</tr>
</tbody>
</table>
<asp:Button id="Button1" runat="server" Text="Change Font Style"></asp:Button>
</form>
</body>
</html>
Related examples in the same category