How Asp.NET Handles Multiple Requests

I was wondering how Asp.NET handles multiple requests? For example: when 1000 users request a page from the installed Asp.net web server, are they queued and processed in order, or is there any other way to process these requests at the same time?

I found several articles, but they were too deep and long, do I need some quick answers to my question?

Many thanks.

Edit:

I read Threads in a C # book and I was wondering how asp.net handles multiple requests. Does a thread create for each request or queues them for further processing or in any other way?

+4
source share
1 answer

Aaron, you can check these entries:

I think that both questions and answers of the above messages can solve your request.

+5
source

All Articles