Hi Wizheart,
To troubleshoot this issue, we really need the source code to reproduce the problem, so that we can investigate the issue in house. It is not necessary that you send out the complete source of your project. We just need a simplest sample to reproduce the problem. You can remove any confidential information or business logic from it.
Best Regards,
Jonathan
Heres the code on my masterpage
<asp:UpdatePanel ID="updSignUp" runat="server"> <ContentTemplate> <asp:Panel ID="panBandSignUp" runat="server" Style="display:none"> <div style="width:700px;"> <asp:Panel ID="panDragPanel" runat="server"> <div style="height:20px;width:2px;float:left"> </div> <div class="dragPanel"> <div class="dragPanelClose"> <a id="jsBandSignUpPopUpCloseButton" href="#"><img src="../Images/Close.gif" border="0" /></a> </div> </div> </asp:Panel> <IU:BandSignUp ID="iuBandSignUp" runat="server" /> </div> </asp:Panel> <ajaxToolkit:ModalPopupExtender ID="ajxModBandSignUp" runat="server" BehaviorID="jsBandSignUpPopUp" TargetControlID="hypBandSignUp" PopupControlID="panBandSignUp" BackgroundCssClass="modalPopupBackground" DropShadow="true" /> <asp:Panel ID="panListnerSignUp" runat="server" Style="display:none"> <div style="width:400px;"> <asp:Panel ID="panListenerSignUpDragPanel" runat="server"> <div style="height:20px;width:2px;float:left"> </div> <div class="dragPanel"> <div class="dragPanelClose"> <a id="jsListenerSignUpPopUpCloseButton" href="#"><img src="../Images/Close.gif" border="0" /></a> </div> </div> </asp:Panel> <IU:SignUp ID="iuListenerSignUp" runat="server" /> </div> </asp:Panel> <ajaxToolkit:ModalPopupExtender ID="ajxModListenerSignUp" runat="server" BehaviorID="jsListenerSignUpPopUp" TargetControlID="hypListenerSignUp" PopupControlID="panListnerSignUp" BackgroundCssClass="modalPopupBackground" DropShadow="true" /> <IU:Logon ID="iuLogon" runat="server" /> <div id="register"> Register as <a id="jsBandSignUpPopUpOpenButton" href="#">Band</a> | <a id="jsListenerSignUpPopUpOpenButton" href="#">Listener</a> <asp:HyperLink ID="hypBandSignUp" runat="server" Style="display:none">Band</asp:HyperLink> <asp:HyperLink ID="hypListenerSignUp" runat="server" Style="display:none">Listener</asp:HyperLink> </div> </ContentTemplate> </asp:UpdatePanel>
The Modal pop up opens on the click of the anchor tags: "jsBandSignUpPopUpOpenButton" & "jsListenerSignUpPopUpOpenButton" and the popups close with the click of "jsBandSignUpPopUpCloseButton" & "jsListenerSignUpPopUpCloseButton" respectively. All this is done through javascript. Now each of the user controls "iuBandSignUp" and "iuListenerSignUp" have a button to signup. However with the current setup none of the user control's Button clicks are fired. But when i remove the panel "panListnerSignUp" & the modal popup extender "ajxModListenerSignUp", the button click of iuBandSignUp fires successfully completing the processing coded within it. Even when i remove panel "panBandSignUp" and modal popup extender "ajxModBandSignUp", the button click in the user control "iuListenerSignUp" fires successfully. I hope someone can help me with this.
Thank You
Hi Wizheart,
Unfortunately, I was failed to reproduce your problem with your source code. I think your issue mostly like caused by some code maybe is not included. I am afraid we cannot find out the exact root cause without further information captured when the problem occurs.
Best Regards,
Jonathan
No comments:
Post a Comment