Can I retrieve data from server to client during an asynchronous post-back using ASP.NET Ajax Librar

Posted by André Pena on Stack Overflow See other posts from Stack Overflow or by André Pena
Published on 2010-04-09T22:52:40Z Indexed on 2010/04/09 23:03 UTC
Read the original article Hit count: 388

Filed under:
|
|

ASP.NET Ajax Library provides some client-side events. For instance:

Sys.Application.add_load(
    function(args) {
        // handle the end of any asynchronous post-back. Every-time there's
        // a server round-trip, this method will be called.
    }
);

During the asynchronous post-back I want to retrieve information to the client. This information must be available in some event like the discribed above.

Does the UpdatePanel or the ScriptManager have any server-side way to retrieve data back to client during an asynchronous post-back?

© Stack Overflow or respective owner

Related posts about c#

Related posts about ASP.NET