CheckBox AutoPostBack (VB.net) : CheckBox « Asp Control « ASP.Net






CheckBox AutoPostBack (VB.net)


<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

    Sub chkNewsletter_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs)
        lblResult.Text = chkNewsletter.Checked.ToString()
    End Sub
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>CheckBox AutoPostBack</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <asp:CheckBox
        id="chkNewsletter"
        Text="Receive Newsletter?"
        AutoPostBack="true"
        OnCheckedChanged="chkNewsletter_CheckedChanged" 
        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.Get Check box selection state (C#)
8.On checkbox changed event (C#)
9.Set Text, TextAlign and Font name for a asp:CheckBox (C#)
10.Define function to change Label Font to Italic (C#)