ispiro
ispiro

Reputation: 27683

Can an unhandled exception by one person browsing a site cause a trouble for another simultaneous user?

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

Answers (2)

SLaks
SLaks

Reputation: 887479

No.

An exception will terminate the current request, but will not affect the rest of the application.

Upvotes: 1

Oded
Oded

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

Related Questions