Hi,
Pls find code below in these i am getting problem when i am clicking on linkbutton the call is not going on the method assosiated with linkbutton.I have created collapsible panel control in the same div as shown below.So please guide me what i need to do.I am having one more div without collapsible panel in that if i make any link button then it is working fine.
<div >
<div >Chapters</div>
<asp:DropDownList ID="ddlChapters" AutoPostBack="true" runat="server"
onselectedindexchanged="ddlChapters_SelectedIndexChanged"></asp:DropDownList>
<ajaxToolkit:CollapsiblePanelExtender ID="cpeDemo" runat="Server"
TargetControlID = "pnlRemainingChapters"
ExpandControlID = "lbDate"
CollapseControlID = "lbDate"
Collapsed = "true"
TextLabelID = "lbDate"
SuppressPostBack = "true"
ExpandedText = "Hide"
CollapsedText = "More"/>
<asp:Panel ID="pnlChapters" runat="server">
</asp:Panel>
<asp:Label ID="lblCheck" runat="server" ></asp:Label>
<asp:Panel ID="pnlRemainingChapters" runat="server">
</asp:Panel>
<div>
<div >Type</div>
<asp:LinkButton ID="lblAll" runat="server" Text="All" OnClick="lblAll_Click" ></asp:LinkButton>
<asp:LinkButton ID="lbLatest" runat="server" Text="Latest" onclick="lbLatest_Click"></asp:LinkButton>
<asp:LinkButton ID="lbEasy" runat="server" Text="Easy" CssClass="navlinks"></asp:LinkButton><br />
<asp:LinkButton ID="lbMedium" runat="server" Text="Medium" CssClass="navlinks"></asp:LinkButton>
<asp:LinkButton ID="lbTough" runat="server" Text="Tough"></asp:LinkButton>
<div class="subjctshead">SortBy</div>
<asp:LinkButton ID="lbDate" runat="server" Text="By Date" OnClick="lbDate_Click"></asp:LinkButton>
<asp:LinkButton ID="lbMostViewd" runat="server" Text="Most Viewd" CssClass="navlinks"></asp:LinkButton><br />
<asp:LinkButton ID="lbImportant" runat="server" Text="Important" CssClass="navlinks"></asp:LinkButton>
<asp:LinkButton ID="MostLiked" runat="server" Text="Most Liked" CssClass="navlinks"></asp:LinkButton>
<div class="subjctshead">Formulas</div>
<asp:DropDownList ID="ddlFormula" runat="server" AutoPostBack="true" CssClass="selectquesdrop"></asp:DropDownList>
</div>




