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?