<asp:Panel id="container" CssClass="container"  runat="server" style="width:850px">
            <asp:Panel  runat="server" id="header" cssClass="header" >
                <div class="msg">&nbsp;</div>
                <asp:LinkButton ID="LinkButton1" runat="server" CssClass="close" OnClientClick="clearDataKey()" />
            </asp:Panel>

            <div runat="server" id="whatup">
                <asp:Panel ID="Panel2" runat="server" >
                    <uc1:messageBox ID="InfoBox" runat="server" />
                </asp:Panel>
            </div>

            <asp:updatepanel ID="upcsconfirmation" runat="server">
                <ContentTemplate>
            <cc1:ModalPopupExtender ID="popupCS" runat="server"  BehaviorID="popupCS" TargetControlID="btnTargetCS" 
                        PopupControlID="pnlPopupCS" BackgroundCssClass="modalBackground"/>
                    <asp:Button ID="btnTargetCS" runat="server" Text="Button"  cssClass="hide" />
                    <cc1:DragPanelExtender ID="DragPanelExtenderCS" TargetControlID="pnlPopupCS"  runat="server"></cc1:DragPanelExtender>
                    <asp:Panel ID="pnlPopupCS" runat="server" SkinID="modal"></asp:Panel>
                    </ContentTemplate>
            </asp:updatepanel>



            <div class="body" >

                <div class="contentarea" style="height:200px;">

                    <asp:TextBox ID="datakeyholder" runat="server" style="display:none" Enabled="False" />
                    <asp:ObjectDataSource ID="odsCopyCustRequirements" runat="server" InsertMethod="InsertSearchRequirement" 
                        TypeName="SearchRequirementsDataObject" 
                        oninserting="Requirements_Inserting" >
                    </asp:ObjectDataSource>
                    <div style="height: 100%; width: 100%">

                        <div id="Div1" style="float: left; width: 45%; padding-left:10px">


                            <div class="column130">
                                <asp:Label ID="lblSearch1" runat="server" Text="FAST Region:"></asp:Label></div>
                            <asp:UpdatePanel ID="UpnlCust" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true">
                                <ContentTemplate>
                                    <div class="column130">
                                        <asp:DropDownList ID="ddSearch1" AutoPostBack="true" DataTextField="Name"
                                            OnSelectedIndexChanged="ddSearch_SelectedIndexChanged" DataValueField="id"
                                            runat="server" Width="150px">
                                        </asp:DropDownList>
                                    </div>
                                    <div class="column130">
                                        <asp:Label ID="lblSearch2" runat="server" Text="Owning Office:"></asp:Label></div>
                                    <div class="column130">
                                        <asp:DropDownList ID="ddSearch2" DataTextField="Name" DataValueField="fastid"
                                            runat="server" Width="150px">
                                        </asp:DropDownList>
                                    </div>
                                </ContentTemplate>
                                <Triggers>
                                    <asp:AsyncPostBackTrigger ControlID="ddSearch1" />
                                </Triggers>
                            </asp:UpdatePanel>


 <div class="column">

                        </div> 
                    </div>
                </div>
               </div> 
               <p></p>
link|improve this question
could you please tell us what's wrong ? what were you trying to do ? if you want help, you need your question to be more precise – JMax Jul 4 '11 at 9:23
after selecting from dropdown ddsearch1 popup getting disappeared – Akshata Jul 4 '11 at 9:24
i want to use asynchrounous postback trigger to load dropdown ddsearch2.am unable to do this.please help me out – Akshata Jul 4 '11 at 9:28
feedback

1 Answer

The upper update panel (upcsconfirmation) containing modal popup extender should have UpdateMode = "Conditional" - otherwise, asynchronous post-back from bottom update panel will also update its content restoring the modal popup to hidden state.

Yet another way to solve your issue is to use Show method of popup extender on server side when the bottom update panel posts back (for example, you can put the call popupCS.Show() in ddSearch_SelectedIndexChanged to keep the modal popup open).

link|improve this answer
thank you very much.first solution is not working. but the secound works!!! – Akshata Jul 4 '11 at 10:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.