This is the general problem face by developer even I also suffered from this problem. In my scenario, I was using RadioButtonList inside ModalPopupExtender. what i was facing when i changed the selection of RadioButton option, it was closing the Ajax ModalPopupExtender.
So what i did to prevent closing of ModalPopupExtender.
I put the modalpopupextender inside the UpdatePanel and in RadioButtonList1_SelectedIndexChanged event I called the ModalPopupExtender show method. like that
protected void RadioButtonListShippingMode_SelectedIndexChanged(object sender, EventArgs e)
{
ModalPopupExtender1.Show();
}
It really solved my problem.
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

sumit singhPosted Oct 8, 2014, 1:53 AM
can u giv other solution
sumit singhPosted Oct 8, 2014, 1:52 AM
ModalPopupExtender1.Show(); this function take 30 sec to update
Purushottam RathorePosted Dec 1, 2010, 2:06 AM
Thanks Manish This blog is very usefull for me, I was also suffering by this problem.