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.
我在我的 ASP.Net 站点上使用 ViewState。如果一个用户的浏览导致应用程序中出现未处理的异常会发生什么——这会影响另一个同时的用户吗?
异常将终止该请求。
不应执行所有其他请求。
当然,这假定了正常类型的异常 - 不喜欢OutOfMemory或会使 IIS 崩溃的东西。
OutOfMemory
不。
异常将终止当前请求,但不会影响应用程序的其余部分。