Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何处理来自单个客户端的多个 http 请求,以便由单个 Asp.net 线程处理。当 PageAsyncTask 或 TPL 不是一个选项时,它会创建一个新线程。代码片段将有很大帮助。
每个单独的 HTTP 请求都将在一个可能单独的线程上执行。
您无法控制 ASP.Net 页面的哪个线程执行计划。
我不相信这可以实现。
想想你为什么要这样做。您是否需要在各种 HTTP 请求之间共享一些信息?如果是这样,请考虑使用会话或 cookie 来管理该信息。