-->

Friday, October 25, 2013

ASP.NET: Example of Programmatically change CheckBoxList Border color

ASP.NET: Example of Programmatically change CheckBoxList Border color

<%@ 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, EventArgs e)
    {
        CheckBoxList1.BorderColor = System.Drawing.Color.Red;
        CheckBoxList1.BorderStyle = BorderStyle.Dashed;
        CheckBoxList1.BorderWidth = int.Parse("3");
       
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>How to change border color of the CheckBoxList Border color </title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:CheckBoxList ID="CheckBoxList1" runat="server">
            <asp:ListItem>C++ Tutorial</asp:ListItem>
            <asp:ListItem>Java Tutorial</asp:ListItem>
            <asp:ListItem>ASP.NET Tutorial</asp:ListItem>
            <asp:ListItem>Turbo C Tutorial</asp:ListItem>
        </asp:CheckBoxList>
        <br />

        <br />
        <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Change" />
        <br />
        <br />
    </div>
    </form>
</body>

</html>
Output
ASP.NET: Example of Programmatically change CheckBoxList Border color

Read other related articles

Also read other articles

© Copyright 2013 Computer Programming | All Right Reserved