tags:

views:

28

answers:

1

I have ASP.NET website, and it calls the asmx web-service to do some operation asynchronously

_service.Beginxxx(request, null, null);

which will run in separate thread (created by thread pool), what if the user close the browser, is this method still keep running and eventually do what I am expecting or it will abort?

+2  A: 

I would expect it to keep running

Steve Elmer