After hosting an ASP.NET 2.0 web application on a windows 2000 server(IIS 5). I was unable to browse the web site.
The following error message was displayed on the b
I discovered that when the web site folder was copied to the server it inherited the security permissions of the parent folder which only had permission for the Administrator, Administrators & System accounts.
I added
With Read & Execute, List Folder Contents and Read permissions.
Even though the problem is resolved I still have some questions
It's clear from the third event log entry that the ApplicationManager fails to create the HostingEnvironment which is in the System.Web assembly.
Since FileLoadException is thrown for System.Web it seems like the ASP.NET worker process doesn't have access to the GAC folder.
Why is the FileLoadException thrown for accessing System.Web?