Reputation: 3993
If I start a thread from request handling in code behind in asp.net web forms and request is handled faster than the thread finishes - will it be aborted or allowed to run further?
Upvotes: 0
Views: 249
Reputation: 498904
The thread should be completely separate from the request thread at this point, so will continue working.
Upvotes: 1