Hello, first post so be kind ;)
I'm using the ModalPopup to display a loading message when the user clicks on an imagebutton. The problem here is that while the ModalPopup is on screen, the button event doesn't fire so the page doesn't do anything - it just sits there with a loading message - here is my code...
<div id="pnlLoading" style="display: none;" class="modalPopup">
<p><img src="/images/mde_loading.gif" /> Contacting Cinema...</p>
</div>
<asp:ImageButton ID="ibtnCalculate" runat="server" ImageUrl="~/images/ordertickets.gif" />
<ajaxToolkit:ModalPopupExtender ID="mde1" runat="server"
TargetControlID="ibtnCalculate"
PopupControlID="pnlLoading"
BackgroundCssClass="modalBackground"
DropShadow="true" />
I need it to fire the ibtnCalculate.Click and show the modal popup :(
Thanks,
Greg.