renaming file/folder destroys session variables ...

  • Thread starter Thread starter Guest
  • Start date Start date
Yes.
The reason behind this is that ASPX pages are compiled. So .NET is watching
the application folder. And as soon as the ASPX page has been changed.
ASP.NET will recompile this page.
It will allow you to change up to 15 (default , configurable) aspx pages
then it will restart an application (meaning that all App variables and
State variable will be lost).

In case of the folder (renaming, creating ) ASP.NET immediately restarts an
application. Even if it does not have aspx pages in it.


George.
 
where did you find this information? basically, how do I configure the number of files that can be changed before asp.net recycles. and does it matter if non .aspx files are changed

thank you
 
Back
Top