Application_Start called on every link, postback etc. App restarts

  • Thread starter Thread starter Kostia
  • Start date Start date
K

Kostia

Hi,
I have a serious problem which prevents me from doing anything.
My applications keeps restarting without any visible reason. The same
code work for all other developers in the group so I think it may be
related to the way my system is configured. Any and all thoughts are
greatly appreciated since this is a very serious problem preventing me
from doing any work.
 
Check if you have an anti virus running that might be checking files in your
virtual directory and causing application restarts.
 
also check your IIS settings for process recycling to see if anything is odd
in there

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_________________________
 
The model in ASP.NET is to restart (recycle) the application when certain
threshholds are crossed. This includes the amount of memory you application
uses, the number of requests it processes and the amount of time it has been
running. This is a fact of life in ASP.NET (and going forward with IIS6 and
beyond). This model, while different, is good (and better). So you need to
design for it. The first and foremost is to not store session state InProc
and store it in the state server or in the database.

What's the particular problem you're having? Maybe we can discuss a better
way to design for the recycle?

-Brock
DevelopMentor
http://staff.develop.com/ballen
 
Back
Top