I am trying to open the Pop Up window Asynchronously. Due to lengthy Database operation. I am waiting to open the Pop up for approximately 35 seconds...The Problem gets worst when the internet speed is very slow. In that case a lot of time. I am using the below mentioned code...
My Query is, What should I do to open the Pop Up first and in the Background the Database Operation is being executed...and during this operation the user may be informed about the busy operation...
<telerik:RadWindowManager
ID="RadWindowManager1"
ShowContentDuringLoad="false" VisibleStatusbar="false"
runat="server"
VisibleOnPageLoad="false"
Width="894px"
Modal="true"
Behaviors="None"
EnableEmbeddedSkins="false"
EnableShadow="true"
OnClientClose="OnClientClose"
ReloadOnShow="false">
<Windows>
<telerik:RadWindow ID="radPopup" runat="server" KeepInScreenBounds="true" EnableShadow="true" />
</Windows>
</telerik:RadWindowManager>My Query is, What should I do to open the Pop Up first and in the Background the Database Operation is being executed...and during this operation the user may be informed about the busy operation...