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
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\