Click here to Skip to main content
15,887,867 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
ModalPopupExtender not hiding after download Popup Window in ASP.Net
Posted
Updated 9-Jun-13 21:18pm
v2
Comments
Shahin Khorshidnia 10-Jun-13 3:20am    
1. Please Tag your question completely, I added ASP.Net to it.
2. Please do not type the question in SubjectBox

I'm sure, you are showing the download popup from code behind. And ModalPopupExtender will be hidden after postback. Just make it visible from codebehind also. See this:
C#
private void fnShowDownload()
{
     //Here is your code to show the download popup.
     ModalPopupExtender1.Show(); //Call this method to show the popup. 
}



--Amit
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900