求助:我的网站上出现如下错误,何故?

哪里有编译错误代码128的详细解释啊?
 

“/”应用程序中的服务器错误。

编译错误

说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。

编译器错误信息: 编译器失败,错误代码为 128。



C:\WINDOWS\system32> "c:\windows\microsoft.net\framework\v1.1.4322\csc.exe" /t:library /utf8output /R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseservices.dll" /R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.data.dll" /R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll" /R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll" /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.xml.dll" /R:"c:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a\system.web.services.dll" /R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll" /R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.web.dll" /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll" /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\root\50960d9f\fc82fa2\suadznjf.dll" /debug- /optimize+ /warnaserror /w:1  "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\root\50960d9f\fc82fa2\suadznjf.0.cs"




行 1:    //------------------------------------------------------------------------------
行 2:    // <autogenerated>
行 3:    //     This code was generated by a tool.
行 4:    //     Runtime Version: 1.1.4322.2032
行 5:    //
行 6:    //     Changes to this file may cause incorrect behavior and will be lost if 
行 7:    //     the code is regenerated.
行 8:    // </autogenerated>
行 9:    //------------------------------------------------------------------------------
行 10:   
行 11:   namespace ASP {
行 12:       using System;
行 13:       using System.Collections;
行 14:       using System.Collections.Specialized;
行 15:       using System.Configuration;
行 16:       using System.Text;
行 17:       using System.Text.RegularExpressions;
行 18:       using System.Web;
行 19:       using System.Web.Caching;
行 20:       using System.Web.SessionState;
行 21:       using System.Web.Security;
行 22:       using System.Web.UI;
行 23:       using System.Web.UI.WebControls;
行 24:       using System.Web.UI.HtmlControls;
行 25:       
行 26:       
行 27:       public class test_aspx : System.Web.UI.Page, System.Web.SessionState.IRequiresSessionState {
行 28:           
行 29:           private static int __autoHandlers;
行 30:           
行 31:           private static bool __initialized = false;
行 32:           
行 33:           private static System.Collections.ArrayList __fileDependencies;
行 34:           
行 35:           
行 36:           #line 2 "d:\userdata\virtualhost\00007644\www\test.aspx"
行 37:           
行 38:   
行 39:       // Insert page code here
行 40:       //
行 41:   
行 42:   
行 43:           #line default
行 44:           #line hidden
行 45:           
行 46:           public test_aspx() {
行 47:               System.Collections.ArrayList dependencies;
行 48:               if ((ASP.test_aspx.__initialized == false)) {
行 49:                   dependencies = new System.Collections.ArrayList();
行 50:                   dependencies.Add("d:\\userdata\\virtualhost\\00007644\\www\\test.aspx");
行 51:                   ASP.test_aspx.__fileDependencies = dependencies;
行 52:                   ASP.test_aspx.__initialized = true;
行 53:               }
行 54:           }
行 55:           
行 56:           protected override int AutoHandlers {
行 57:               get {
行 58:                   return ASP.test_aspx.__autoHandlers;
行 59:               }
行 60:               set {
行 61:                   ASP.test_aspx.__autoHandlers = value;
行 62:               }
行 63:           }
行 64:           
行 65:           protected System.Web.HttpApplication ApplicationInstance {
行 66:               get {
行 67:                   return ((System.Web.HttpApplication)(this.Context.ApplicationInstance));
行 68:               }
行 69:           }
行 70:           
行 71:           public override string TemplateSourceDirectory {
行 72:               get {
行 73:                   return "/";
行 74:               }
行 75:           }
行 76:           
行 77:           private void __BuildControlTree(System.Web.UI.Control __ctrl) {
行 78:               __ctrl.SetRenderMethodDelegate(new System.Web.UI.RenderMethod(this.__Render__control1));
行 79:           }
行 80:           
行 81:           private void __Render__control1(System.Web.UI.HtmlTextWriter __output, System.Web.UI.Control parameterContainer) {
行 82:               
行 83:               #line 8 "d:\userdata\virtualhost\00007644\www\test.aspx"
行 84:               Response.Write("hello sss");
行 85:               
行 86:               #line default
行 87:               #line hidden
行 88:           }
行 89:           
行 90:           protected override void FrameworkInitialize() {
行 91:               this.__BuildControlTree(this);
行 92:               this.FileDependencies = ASP.test_aspx.__fileDependencies;
行 93:               this.EnableViewStateMac = true;
行 94:           }
行 95:           
行 96:           public override int GetTypeHashCode() {
行 97:               return 5381;
行 98:           }
行 99:       }
行 100:  }
行 101:  



版本信息: Microsoft .NET Framework 版本:1.1.4322.2032; ASP.NET 版本:1.1.4322.2032
原文地址:https://www.cnblogs.com/chenge/p/109814.html