Wednesday, July 28, 2010

How to use ajax (update panel) to enable disbale panel based on selection

<%@ Page Language="C#" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <script runat="server">
        public void SetAccountInfoStatus(object sender, EventArgs e)
        {
            this.pnlAccountInformation.Enabled = !this.ckboxAccountStatus.Checked;
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager runat="server" ID="ScriptManager1"></asp:ScriptManager>        
        <asp:UpdatePanel runat="server" ID="upnlAccountInformation">
            <ContentTemplate>
                <asp:CheckBox runat="server" ID="ckboxAccountStatus" Text="Account Closed" AutoPostBack="true" OnCheckedChanged="SetAccountInfoStatus" />
                <asp:Panel runat="server" ID="pnlAccountInformation">
                    <asp:TextBox runat="server" ID="txtAccountNo" Text="ACC12345676"></asp:TextBox>
                    <asp:TextBox runat="server" ID="txtMemeberNo" Text="MEM12345678"></asp:TextBox>
                </asp:Panel>
            </ContentTemplate>
        </asp:UpdatePanel>
    </div>
    </form>
</body>
</html>

No comments:

Azure Storage Account Types

Defferent Types of Blobs Block blobs store text and binary data. Block blobs are made up of blocks of data that can be managed individually...