Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies

浪子不回头ぞ 提交于 2019-12-05 18:40:47

The temp files that is created by IIS or the built-in Visual Studio development server might cause such problems. Close Visual Studio and try finding your project in one of these places and delete the folder:

C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files
C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Temporary ASP.NET Files
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files

(Adjust according to the framework you use for the project)

As suggested by Chris Herring, also try deleting files inside this folder:

C:\Users\%USERNAME%\AppData\Local\Temp\Temporary ASP.NET Files

You might also want to remove the website cache:

C:\Users\%USERNAME%\AppData\Local\Microsoft\WebSiteCache

If that still does not solve the problem, deleting all temp files as suggested by Arun CM could be a final option:

%TEMP%

You can open these folders quickly by clicking the Start menu, pasting it in the search field (Win7, Vista) or through the Run option (XP), and hitting enter.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!