Access to the path “C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\cbnonreg\fc933fca\bbf91eea” is denied

前端 未结 11 861
无人及你
无人及你 2020-12-10 11:30

I get the error

Access to the path \"C:\\WINDOWS\\Microsoft.NET\\Framework\\v1.1.4322\\Temporary ASP.NET Files\\cbnonreg\\fc933fca\\bbf91eea\" is

11条回答
  •  星月不相逢
    2020-12-10 12:10

    It looks like your web app had a hiccup when the new version was deployed. This happens from time to time. I typically try the following items to resolve the issue:

    1. Open and resave the web.config file on the server. A lot of times this will cause a refresh of the assembly and fix your issue.

    2. Delete the "cbnonreg" folder. This will force a refresh of the assembly and fix the issue.

    3. Restart IIS. This flushes out all temporary files and gives you a fresh start of everything.

    Test these issues out one at a time to see if they resolve your issue. They are in the order of "least invasive" so that other applications on the server are not affected. You may into "permission denied" errors when performing issue #2 if some process is still trying to hold on to the files.

    Hope this helps!

提交回复
热议问题