asp.net - Page does not respond when update panel is in progress, please guide? -
In a page I have many updated panels that are timer associated with them to refresh the grid. My problem is that When the asynchronous request (update panel) is in progress, does not respond. If the user tries to click on some other link to visit another page, then he can not do so until the asynchronous request is complete.
Is it not possible that users should be able to cl ...
The browser runs in one-threaded mode, you can not run any background function if any work is in progress then all other events are queued and the user will have to face the effect whether the browser has been hanged or not , So for this kind of situation you need to handle it yourself Yes.
1- Keep partial
2- If possible, do this in small steps.
3- Show the progress bar, so that the customer can not be disturbed.
Comments
Post a Comment