Reputation: 27683
I'm using ViewState on my ASP.Net site. What will happen if one user's browsing causes an unhandled exception in the application - will that affect another simultaneous user?
Upvotes: 0
Views: 71
Reputation: 887479
No.
An exception will terminate the current request, but will not affect the rest of the application.
Upvotes: 1
Reputation: 499062
The exception will terminate that request.
All other requests should not be effected.
Of course, this assumes the normal kind of exception - not like OutOfMemory
or something that will crash IIS.
Upvotes: 2