Pages

Men

rh

7/10/2012

What is the difference between asynchronous and synchronous HTTP Handlers in Asp.Net

What is the difference between asynchronous and synchronous HTTP Handlers?
           A synchronous handler does not return until it finishes processing the HTTP request for which it is called.

            An asynchronous handler runs a process independently of sending a response to the user. Asynchronous handlers are useful when you must start an application process that might be lengthy and the user does not have to wait until it finishes before receiving a response from the server.

No comments :

Post a Comment