Sir,
In my web page, I have a checkboxlist.
<asp:CheckBoxList ID="chk1" runat="server" AutoPostBack="True" >
<asp:ListItem>All</asp:ListItem>
<asp:ListItem>C</asp:ListItem>
<asp:ListItem>C++</asp:ListItem>
<asp:ListItem>C#</asp:ListItem>
</asp:CheckBoxList>
By selecting 'All' all the checkboxes should select.
Thanks in advance.