views:

43

answers:

1

I have developed an aspx in .net 3.5 sp1 in my local system. But my server doesn't have .net 3.5 sp1 but it does has 3.5.

Error in this page. ANy suggestion.

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 128.

c:\4833248\system32\inetsrv> "c:\4833248\Microsoft.NET\Framework\v3.5\csc.exe" /t:library /utf8output /R:"C:\4833248\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" /R:"C:\4833248\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.WorkflowServices\3.5.0.0__31bf3856ad364e35\System.WorkflowServices.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.ServiceModel\3.0.0.0__b77a5c561934e089\System.ServiceModel.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Data.DataSetExtensions\3.5.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Web.Mobile\2.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" /R:"C:\4833248\assembly\GAC_32\System.Web\2.0.0.0__b03f5f7f11d50a3a\System.Web.dll" /R:"C:\4833248\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Web.Services\2.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" /R:"c:\4833248\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.ServiceModel.Web\3.5.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Runtime.Serialization\3.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" /R:"C:\4833248\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.IdentityModel\3.0.0.0__b77a5c561934e089\System.IdentityModel.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Xml.Linq\3.5.0.0__b77a5c561934e089\System.Xml.Linq.dll" /R:"C:\4833248\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll" /out:"c:\4833248\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\be3ca745\ff6e6130\App_Web_enquiry.aspx.cdcab7d2.aoqfb4e2.dll" /debug- /optimize+ /win32res:"c:\4833248\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\be3ca745\ff6e6130\n1a_6g9j.res" /w:4 /nowarn:1659;1699;1701 /warnaserror-  "c:\4833248\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\be3ca745\ff6e6130\App_Web_enquiry.aspx.cdcab7d2.aoqfb4e2.0.cs" "c:\4833248\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\be3ca745\ff6e6130\App_Web_enquiry.aspx.cdcab7d2.aoqfb4e2.1.cs" "c:\4833248\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\be3ca745\ff6e6130\App_Web_enquiry.aspx.cdcab7d2.aoqfb4e2.2.cs
+1  A: 

There is most likely a problem with ASP.NET configuration on the server. Try running the ASP.NET IIS Registration Tool first of all and see if the problem persists. This is the less likely solution since the runtime version is the same.

I'd also recommend reading this post by Scott Hanselman describing the problem and possible solutions.

Dennis Delimarsky