Changing Aspx causes reload?

We have a setting that's not perfect. We have our web server configured to have a global app and then we have every web app dll (hundreds) in WEBROOT / bin

I recently made a change to an ASPX page in .NET 1.1. and we went to check this change and he complained that a separate and completely unrelated DLL was not loading. I don't understand how changing the ASPX file will reload all DLLs.

I removed the offending DLL and the problem went away.

Anyone have any thoughts on this?

0


source to share


1 answer


Changing the .aspx page causes all the .aspx files to be recompiled in the same directory, so the DLL is reloaded. You would be much better off if you could split things up into separate applications in IIS. If this is not possible, I do not know how you could get around this ...



0


source







All Articles