ASP.NET奇怪的编译错误

前端之家收集整理的这篇文章主要介绍了ASP.NET奇怪的编译错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不知道我的机器有什么问题,但是有一段时间,我从ASP.NET(对我的所有应用程序)发现以下奇怪的错误
Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: The compiler Failed with error code -1073741502.


Show Detailed Compiler Output:


C:\Windows\SysWOW64\inetsrv> "C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe" /t:library /utf8output /R:"C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\75855fbd\1e953b27\assembly\dl3\2689d6b5\f0791420_961fcc01\wnvhtmlconvert.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Web.Entity.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" /R:"C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\75855fbd\1e953b27\assembly\dl3\d08c81cd\4d77c01f_961fcc01\AjaxControlToolkit.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" ......AND SO ON.....

事实:

>杀死工作进程临时修复问题
我甚至重新安装了我的.NET框架!它没有工作。
>重新启动IIS没有帮助

什么可能导致这个问题?

解决方法

好的,经过几天的努力,我终于解决了这个问题。

>不是通过清除ASP.NET temp
>不是重新安装.NET框架!

简单!

>我将应用程序池标识从“本地系统”更改为“ApplicationPoolIdentity”

显然,我的本地系统有一个权限错误,C#编译器(csc.exe)无法访问一些资源和源代码

为了更改您的AppPool身份,请遵循以下步骤:http://learn.iis.net/page.aspx/624/application-pool-identities/

原文链接:https://www.f2er.com/aspnet/252464.html

猜你在找的asp.Net相关文章