i have used a textbox with a popup control extender and a panel with a checkboxlist
when ever i click on the checkbox the values are stored in table but i can't view that values on my textbox
code as follows:-<asp:TextBox ID="txtCombo" runat="server" ReadOnly="true" >
<cc1:PopupControlExtender ID="PopupControlExtender1" runat="server"
TargetControlID="txtCombo" Position="Bottom"
PopupControlID="panel3" >
and my panel with checkbox is as follows:- <asp:Panel ID="panel3" runat="server" ScrollBars="Vertical" BorderWidth="1" Width="140" BackColor="AliceBlue" BorderColor="Azure">
<asp:CheckBoxList ID="chkList" runat="server" CssClass="style6" Width="124" Height="15" OnSelectedIndexChanged="chkList_SelectedIndexChanged" >
<asp:ListItem>1
<asp:ListItem>2
<asp:ListItem>3
<asp:ListItem>4
<asp:ListItem>5
<asp:ListItem>6
<asp:ListItem>7
Kindly help me out where is my error exactly
Thanks & Regards
Priti