Posted on: 3/17/2015 6:33:27 PM | Views : 628

Hi All,
I am using below code to show the transaction running when user will submit any data. It is working fine but where page is taking more time it is just showing the message not updating any thing and after some time message will also go

Please suggest

<script type="text/javascript">         var prm = Sys.WebForms.PageRequestManager.getInstance();         //Raised before processing of an asynchronous postback starts and the postback request is sent to the server.         prm.add_beginRequest(BeginRequestHandler);         // Raised after an asynchronous postback is finished and control has been returned to the browser.         prm.add_endRequest(EndRequestHandler);         function Be ...

Go to the complete details ...