I m using a ModalPopupExtender1 in my page to edit some information this is a panel that I m using contain some textbox and a link to upload photo
when this link is clicked a new ModalPopupExtender2 is open to upload file
When I open my 1st pop extender I m able to disable page
using this script
.modalBackground
{
background-color:Black;
filter:alpha(opacity=70);
opacity:0.7;
}
I m unable to disable my 1st Popupextender using the same code
What I want is to disable my 1st popupextender when my 2nd popupextender is open
What I do with the ModalPopupExtender is wrap it in a panel and updatepanel:
I can then call the .Show() and .Hide() methods of the modals and the update panels. You should be able to do something like this on your edit information modal:
You can then switch back and forth between the modals, and update them if needed through the UpdatePanel.