I want to display a status message after a server side postback. Currently to do this,
I use blockUI for blocking a div while the save is in progress
I unblock the div with a custom End request handler for my update panel
- To display status messages, I use scriptmanager's registerstartupscript() in my try catch block on server side code. All works well, however this displays the status messages before the div is unblocked.
How do I show my success/error messages only after the div has been unblocked ?