The compiler failed with error code 128.

D

Dave Casper

Hello,

I'm receiving the following error on one of my asp.net applications. I have another asp.net application that works fine on the same server. Not sure whats going on. I've searched around and haven't been able to find any information on the error. Any help would be greatly appreciated.

Thanks,
Dave Casper


--------------------------------------------------------------------------------

Server Error in '/' Application.
--------------------------------------------------------------------------------

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.



Show Detailed Compiler Output:


c:\windows\system32\inetsrv> "c:\windows\microsoft.net\framework\v1.1.4322\vbc.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.drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll" /R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.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" /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\root\f13e9c2e\a174dfc9\xctixid5.dll" /D:DEBUG=1 /debug+ /win32resource:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\root\f13e9c2e\a174dfc9\xctixid5.res" "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\root\f13e9c2e\a174dfc9\xctixid5.0.vb"







Show Complete Compilation Source:


Line 1: '------------------------------------------------------------------------------
Line 2: ' <autogenerated>
Line 3: ' This code was generated by a tool.
Line 4: ' Runtime Version: 1.1.4322.573
Line 5: '
Line 6: ' Changes to this file may cause incorrect behavior and will be lost if
Line 7: ' the code is regenerated.
Line 8: ' </autogenerated>
Line 9: '------------------------------------------------------------------------------
Line 10:
Line 11: Option Strict Off
Line 12: Option Explicit On
Line 13:
Line 14: Imports Microsoft.VisualBasic
Line 15: Imports System
Line 16: Imports System.Collections
Line 17: Imports System.Collections.Specialized
Line 18: Imports System.Configuration
Line 19: Imports System.Text
Line 20: Imports System.Text.RegularExpressions
Line 21: Imports System.Web
Line 22: Imports System.Web.Caching
Line 23: Imports System.Web.Security
Line 24: Imports System.Web.SessionState
Line 25: Imports System.Web.UI
Line 26: Imports System.Web.UI.HtmlControls
Line 27: Imports System.Web.UI.WebControls
Line 28:
Line 29: Namespace ASP
Line 30:
Line 31: <System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()> _
Line 32: Public Class Index_aspx
Line 33: Inherits System.Web.UI.Page
Line 34: Implements System.Web.SessionState.IRequiresSessionState
Line 35:
Line 36: Private Shared __initialized As Boolean = false
Line 37:
Line 38: Private Shared __stringResource As Object
Line 39:
Line 40: Private Shared __fileDependencies As System.Collections.ArrayList
Line 41:
Line 42: Public Sub New()
Line 43: MyBase.New
Line 44: Dim dependencies As System.Collections.ArrayList
Line 45: If (ASP.Index_aspx.__initialized = false) Then
Line 46: ASP.Index_aspx.__stringResource = System.Web.UI.TemplateControl.ReadStringResource(GetType(ASP.Index_aspx))
Line 47: dependencies = New System.Collections.ArrayList
Line 48: dependencies.Add("E:\Capacity Planning\wwwroot\index.aspx")
Line 49: ASP.Index_aspx.__fileDependencies = dependencies
Line 50: ASP.Index_aspx.__initialized = true
Line 51: End If
Line 52: Me.Server.ScriptTimeout = 30000000
Line 53: End Sub
Line 54:
Line 55: Protected Overrides ReadOnly Property SupportAutoEvents As Boolean
Line 56: Get
Line 57: Return false
Line 58: End Get
Line 59: End Property
Line 60:
Line 61: Protected ReadOnly Property ApplicationInstance As System.Web.HttpApplication
Line 62: Get
Line 63: Return CType(Me.Context.ApplicationInstance,System.Web.HttpApplication)
Line 64: End Get
Line 65: End Property
Line 66:
Line 67: Public Overrides ReadOnly Property TemplateSourceDirectory As String
Line 68: Get
Line 69: Return "/"
Line 70: End Get
Line 71: End Property
Line 72:
Line 73: Private Sub __BuildControlTree(ByVal __ctrl As System.Web.UI.Control)
Line 74: Dim __parser As System.Web.UI.IParserAccessor = CType(__ctrl,System.Web.UI.IParserAccessor)
Line 75:
Line 76: #ExternalSource("E:\Capacity Planning\wwwroot\index.aspx",1)
Line 77: __parser.AddParsedSubObject(Me.CreateResourceBasedLiteralControl(0, 3076, false))
Line 78:
Line 79: #End ExternalSource
Line 80: End Sub
Line 81:
Line 82: Protected Overrides Sub FrameworkInitialize()
Line 83: SetStringResourcePointer(ASP.Index_aspx.__stringResource, 3076)
Line 84: Me.__BuildControlTree(Me)
Line 85: Me.FileDependencies = ASP.Index_aspx.__fileDependencies
Line 86: Me.ContentType = "text/html"
Line 87: Me.ResponseEncoding = "iso-8859-1"
Line 88: Me.EnableViewStateMac = true
Line 89: Me.Request.ValidateInput
Line 90: End Sub
Line 91:
Line 92: Public Overrides Function GetTypeHashCode() As Integer
Line 93: Return 2141278421
Line 94: End Function
Line 95: End Class
Line 96: End Namespace
Line 97:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top