ren
ren

Reputation: 3993

asp.net web forms threading in a request handling

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

Answers (1)

Oded
Oded

Reputation: 498904

The thread should be completely separate from the request thread at this point, so will continue working.

Upvotes: 1

Related Questions