Get Check box selection state (C#) : CheckBox « Asp Control « ASP.Net






Get Check box selection state (C#)

<%@ Page Language="C#" %>
<script runat="server">
    protected void btnSubmit_Click(object sender, EventArgs e)
    {
        lblResult.Text = chkNewsletter.Checked.ToString();
    }
</script>
<html>
<head>
    <title>Show CheckBox</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <asp:CheckBox
        id="chkNewsletter"
        Text="Receive Newsletter?"
        Runat="server" />
    <br />
    <asp:Button
        id="btnSubmit"
        Text="Submit"
        OnClick="btnSubmit_Click"
        Runat="server" />
    <hr />
    
    <asp:Label
        id="lblResult"
        Runat="server" />
    
    </div>
    </form>
</body>
</html>

           
       








Related examples in the same category

1.asp:CheckBox: change font and border (VB.net)
2.On asp:CheckBox selection state changed (VB.net)
3.asp:CheckBox: text align (VB.net)
4.Set asp:checkbox checked (VB.net)
5.Set Text, TextAlign and Font name for a asp:CheckBox (VB.net)
6.Watch TextBox, CheckBox and radiobutton auto post back action (C#)
7.On checkbox changed event (C#)
8.Set Text, TextAlign and Font name for a asp:CheckBox (C#)
9.Define function to change Label Font to Italic (C#)
10.CheckBox AutoPostBack (VB.net)