ASP.NET Error: Could not load file or assembly App_Web_z9w33txs

前端 未结 5 681
余生分开走
余生分开走 2021-01-06 05:50

How did you get rid of these annoying ASP.NET errors: Could not load file or assembly \'App_Web_z9w33txs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\'

Thi

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-06 06:39

    Try closing Visual Studio and then deleting all the folders in your Temporary ASP.NET Files folder by running the following from the Command Prompt:

    rd "%TEMP%\Temporary ASP.NET Files\." /s /q
    

    or from PowerShell:

    gci "$env:TEMP\Temporary ASP.NET Files" | % {ri $_.FullName -recurse}
    

    Depending on which Frameworks are used, also clear the following folders on the web server:

    %windir%\Microsoft.NET\v1.1.4322\Temporary ASP.NET Files\
    %windir%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\
    

提交回复
热议问题