Hi ,
In my asp.net 2005 web application i am using modalpopepextender control and opening the same through javascript as follows.
function fnopenMordal()
{
var modalPopupBehavior = $find('programmaticModalPopupBehavior');
modalPopupBehavior.show();
}
but due to large HTML (over 1 mb of text) modalPopupBehavior.show(); responses too slow, it takes around 10 seconds to come up. i cant do it through postback i need a quick fix from javascript only.
Thanks in advance,
Navpreet Singh