Showing posts with label error. Show all posts
Showing posts with label error. Show all posts

Saturday, March 31, 2012

The bass class System.Web.UI.Page cannot be designed.

Help!!

I am now getting the following error concerning the Microsoft Development Environment in .NET:

=========================================================
The file failed to load in the Web Form designer. Please correct the following error, then load it again: The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file:

contactbroker -- The base class 'System.Web.UI.Page' cannot be designed.
=========================================================

What do I need to do. This happens with all of my .aspx pages not just the one listed in the error message. Is there another reference I need to load into my solution. I currently have the following reference listed:

Microsoft.Web.UI.WebControls
MSHTML
stdole
System
System.Data
System.Drawing
System.Security
System.Web
System.Web.ReqularExpressions
System.Web.Services
System.Windows.Forms
System.XML
tabDlg

I hope this is enought info to help you figure out what my problem is, other than be too ignorant to figure it out for myself...

Thanks

ArtAre you trying to build a page class in a usercontrol?
I guess I don't even know enough to understand your question. Can you help me out a little further? Thanks
Yeah, that was a bad response on my part. Basically, are you trying to do things in an ascx file that should are meant for aspx. If you are working in an aspx page, you can use the system.web.ui.page, but if you are in a usercontrol (ascx) you must make use of system.web.ui.usercontrol or whatever. Also remember (Just a heads up, not releated to your current problem), a page can only have one form tag and your ascx files cannot have a form tag because this is used in the page which those usercontrols will sit inside of.
Here is my situation. I installed .NET Framework 1.1 yesterday. I already had .NET Framework 1.0 installed. I installed 1.1 because I wanted to take advantage of the HasRows Property when check to see if a dataReader had returned any rows. After I installed 1.1 I got an error on the HasRows property. I then removed the version 1.0 System.Data, System.Drawing, System.Security, System.Web, System.Web.RegularExpressions, System.WebServices, and System.XML references and replaced them all with 1.1 version. Well the HasRows problem went away but now, every time I try to open one of my .aspx pages I get the error that is the subject of this post. Additoinally I can no longer get into the design mode for any of these forms.

I haven't changed any of the code, or added any additional references to the project.
What version of Visual Studio are you using?
Microsoft Development Environment 2002 Version 7.0.94466

The compiler failed with error code -1073741502

Hi all,
I was working on a little project, worked fine, but now all of a sudden I
get:
The compiler failed with error code -1073741502
as an error message (when running the site, not building).
I have NO idea what's wrong. I changed some code (only very small, which I
did like 10 times before that in the past 15 minutes) and I can't get it
back to work, whatever I do. The details of this error message are:
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\system32> "c:\windows\microsoft.net\framework\v1.1.4322\csc.exe"
/t:library /utf8output
/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\s
ystem.web.mobile.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.
data.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net
files\whoissite\d24d73f4\7403d467\assemb
ly\dl2\2f0f1907\a8f077d3_1bcbc401\wh
oissite.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11
d50a3a\system.enterpriseservices.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll"
/R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.w
eb.dll"
/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll"
/R:"c:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a
\system.web.services.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.x
ml.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\syst
em.drawing.dll"
/out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\whoissite\d24d73f4\7403d467\aydmbx
nx.dll" /D:DEBUG /debug+ /optimize-
/warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary
ASP.NET Files\whoissite\d24d73f4\7403d467\aydmbx
nx.0.cs"
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.2032
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: namespace ASP {
Line 12: using System;
Line 13: using System.Collections;
Line 14: using System.Collections.Specialized;
Line 15: using System.Configuration;
Line 16: using System.Text;
Line 17: using System.Text.RegularExpressions;
Line 18: using System.Web;
Line 19: using System.Web.Caching;
Line 20: using System.Web.SessionState;
Line 21: using System.Web.Security;
Line 22: using System.Web.UI;
Line 23: using System.Web.UI.WebControls;
Line 24: using System.Web.UI.HtmlControls;
Line 25:
Line 26:
Line 27:
[System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
Line 28: public class Global_asax : WhoisSite.Global {
Line 29:
Line 30: private static bool __initialized = false;
Line 31:
Line 32: public Global_asax() {
Line 33: if ((ASP.Global_asax.__initialized == false)) {
Line 34: ASP.Global_asax.__initialized = true;
Line 35: }
Line 36: }
Line 37: }
Line 38: }
Line 39:
But when I only Build the project, it goes fine! I have already deleted the
site from IIS and Added it again, removed the temp folder it shows in
detailed compiler output, but without luck.
HELP?! :D
Thanks,
Razzieok solved it - somehow there was still an instance running in the background
(iexplore.exe) and I terminated them, and it worked again.
"Razzie" <razzieNOSPAM@dotnet.itags.org.quicknet.nl> wrote in message
news:O4o%23czxyEHA.3408@dotnet.itags.org.TK2MSFTNGP10.phx.gbl...
> Hi all,
> I was working on a little project, worked fine, but now all of a sudden I
> get:
> The compiler failed with error code -1073741502
> as an error message (when running the site, not building).
> I have NO idea what's wrong. I changed some code (only very small, which I
> did like 10 times before that in the past 15 minutes) and I can't get it
> back to work, whatever I do. The details of this error message are:
> 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\system32>
> "c:\windows\microsoft.net\framework\v1.1.4322\csc.exe" /t:library
> /utf8output
> /R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a
\system.web.mobile.dll"
> /R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\syste
m.data.dll"
> /R:"c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net
> files\whoissite\d24d73f4\7403d467\assemb
ly\dl2\2f0f1907\a8f077d3_1bcbc401\
whoissite.dll"
> /R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f
11d50a3a\system.enterpriseservices.dll"
> /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll"
> /R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system
.web.dll"
> /R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll
"
> /R:"c:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a
3a\system.web.services.dll"
> /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system
.xml.dll"
> /R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\sy
stem.drawing.dll"
> /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
> Files\whoissite\d24d73f4\7403d467\aydmbx
nx.dll" /D:DEBUG /debug+
> /optimize- /warnaserror /w:1
> "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
> Files\whoissite\d24d73f4\7403d467\aydmbx
nx.0.cs"
>
>
> 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.2032
> 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: namespace ASP {
> Line 12: using System;
> Line 13: using System.Collections;
> Line 14: using System.Collections.Specialized;
> Line 15: using System.Configuration;
> Line 16: using System.Text;
> Line 17: using System.Text.RegularExpressions;
> Line 18: using System.Web;
> Line 19: using System.Web.Caching;
> Line 20: using System.Web.SessionState;
> Line 21: using System.Web.Security;
> Line 22: using System.Web.UI;
> Line 23: using System.Web.UI.WebControls;
> Line 24: using System.Web.UI.HtmlControls;
> Line 25:
> Line 26:
> Line 27: [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
> Line 28: public class Global_asax : WhoisSite.Global {
> Line 29:
> Line 30: private static bool __initialized = false;
> Line 31:
> Line 32: public Global_asax() {
> Line 33: if ((ASP.Global_asax.__initialized == false)) {
> Line 34: ASP.Global_asax.__initialized = true;
> Line 35: }
> Line 36: }
> Line 37: }
> Line 38: }
> Line 39:
>
> But when I only Build the project, it goes fine! I have already deleted
> the site from IIS and Added it again, removed the temp folder it shows in
> detailed compiler output, but without luck.
> HELP?! :D
> Thanks,
> Razzie
>

Wednesday, March 28, 2012

The compiler failed with error code -1073741819.

Anyone,

I have an ASP.NET webapp in the 1.0 framework that has been working for
the past 2ish years.

Two weeks ago a new developer received the following error when trying
to run the app in debug mode.

"The instruction at "0x77f57ec6" referenced memory at "0x797800004".
The memory could not be "written".

>From the IDE, before I attempt to run in debug mode I can "right click"
a given aspx file and "View Code". I can also "right click" and "View
in Designer". When I attempt to "right click" and "View in Browser" I
receive the following 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.

The detailed Compiler Output is as follows:

C:\WINDOWS\system32>
"c:\windows\microsoft.net\framework\v1.0.3705\vbc.e xe" /t:library
/utf8output
/R:"c:\windows\assembly\gac\crystaldecisions.web\9.1.3 300.0__692fbea5521e1304\crystaldecisions.web.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\5642a9da\c0eb1c67_a2aac501\xsm2.dll"
/R:"c:\windows\assembly\gac\crystaldecisions.crystalre ports.engine\9.1.3300.0__692fbea5521e1304\crystald ecisions.crystalreports.engine.dll"
/R:"c:\windows\assembly\gac\system.web.services\1.0.33 00.0__b03f5f7f11d50a3a\system.web.services.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.3300.0_ _b03f5f7f11d50a3a\system.drawing.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\d898667e\c40d926c_a2aac501\nexsurex.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.3300.0__b77 a5c561934e089\system.xml.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\430dcb9f\147ce564_a2aac501\xaccounting.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\2c66c8b1\6c3aaed6_9baac501\controls.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\6834c7bf\32afd8a9_9baac501\dalplugindetailedlo g.dll"
/R:"c:\windows\assembly\gac\crystaldecisions.reportsou rce\9.1.3300.0__692fbea5521e1304\crystaldecisions. reportsource.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\dade88bd\0060bd99_534fc201\interop.vba.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\9f86c1cb\0ac2eba9_9baac501\xdom3.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\b0170de4\b0608c65_a2aac501\commonlib.dll"
/R:"c:\windows\assembly\gac\crystaldecisions.shared\9. 1.3300.0__692fbea5521e1304\crystaldecisions.shared .dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\1edb7ee1\f99ae4a9_9baac501\xdba3.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.3300.0__b7 7a5c561934e089\system.data.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\7996cee9\e873dda9_9baac501\vcrpagenavigator.dl l"
/R:"c:\windows\assembly\gac\system\1.0.3300.0__b77a5c5 61934e089\system.dll"
/R:"c:\windows\assembly\gac\system.web\1.0.3300.0__b03 f5f7f11d50a3a\system.web.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\93ce11ca\a67a0465_a2aac501\xdti.webcontols.dll "
/out:"C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Tempo rary ASP.NET
Files\nexsurex_working\cd5673eb\1b418a67\thy6lfor. dll" /D:DEBUG=1
/debug+ "C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Tempo rary
ASP.NET Files\nexsurex_working\cd5673eb\1b418a67\thy6lfor. 0.vb"

Microsoft (R) Visual Basic .NET Compiler version 7.00.9466
for Microsoft (R) .NET Framework version 1.00.3705.288
Copyright (C) Microsoft Corporation 1987-2001. All rights reserved.

The first developer who was receiving this issue had IT rebuild the
box, and the problem went away for a day or two, but came back. He is
currently on the third rebuild, with the application working for three
consecutive days.

With this now happening on my machine, I believe this to be an
application issue, not hardware.

Any help would be greatly appreciated.Check your hard disk(s) for errors.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
Ven, y hablemos de ASP.NET...
======================

<robert_m_fisher@dotnet.itags.org.yahoo.com> wrote in message
news:1125104686.827098.248920@dotnet.itags.org.g14g2000cwa.googlegr oups.com...
> Anyone,
> I have an ASP.NET webapp in the 1.0 framework that has been working for
> the past 2ish years.
> Two weeks ago a new developer received the following error when trying
> to run the app in debug mode.
> "The instruction at "0x77f57ec6" referenced memory at "0x797800004".
> The memory could not be "written".
>>From the IDE, before I attempt to run in debug mode I can "right click"
> a given aspx file and "View Code". I can also "right click" and "View
> in Designer". When I attempt to "right click" and "View in Browser" I
> receive the following 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.
> The detailed Compiler Output is as follows:
> C:\WINDOWS\system32>
> "c:\windows\microsoft.net\framework\v1.0.3705\vbc.e xe" /t:library
> /utf8output
> /R:"c:\windows\assembly\gac\crystaldecisions.web\9.1.3 300.0__692fbea5521e1304\crystaldecisions.web.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\5642a9da\c0eb1c67_a2aac501\xsm2.dll"
> /R:"c:\windows\assembly\gac\crystaldecisions.crystalre ports.engine\9.1.3300.0__692fbea5521e1304\crystald ecisions.crystalreports.engine.dll"
> /R:"c:\windows\assembly\gac\system.web.services\1.0.33 00.0__b03f5f7f11d50a3a\system.web.services.dll"
> /R:"c:\windows\assembly\gac\system.drawing\1.0.3300.0_ _b03f5f7f11d50a3a\system.drawing.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\d898667e\c40d926c_a2aac501\nexsurex.dll"
> /R:"c:\windows\assembly\gac\system.xml\1.0.3300.0__b77 a5c561934e089\system.xml.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\430dcb9f\147ce564_a2aac501\xaccounting.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\2c66c8b1\6c3aaed6_9baac501\controls.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\6834c7bf\32afd8a9_9baac501\dalplugindetailedlo g.dll"
> /R:"c:\windows\assembly\gac\crystaldecisions.reportsou rce\9.1.3300.0__692fbea5521e1304\crystaldecisions. reportsource.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\dade88bd\0060bd99_534fc201\interop.vba.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\9f86c1cb\0ac2eba9_9baac501\xdom3.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\b0170de4\b0608c65_a2aac501\commonlib.dll"
> /R:"c:\windows\assembly\gac\crystaldecisions.shared\9. 1.3300.0__692fbea5521e1304\crystaldecisions.shared .dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\1edb7ee1\f99ae4a9_9baac501\xdba3.dll"
> /R:"c:\windows\assembly\gac\system.data\1.0.3300.0__b7 7a5c561934e089\system.data.dll"
> /R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.3300.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\7996cee9\e873dda9_9baac501\vcrpagenavigator.dl l"
> /R:"c:\windows\assembly\gac\system\1.0.3300.0__b77a5c5 61934e089\system.dll"
> /R:"c:\windows\assembly\gac\system.web\1.0.3300.0__b03 f5f7f11d50a3a\system.web.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\tempo rary asp.net
> files\nexsurex_working\cd5673eb\1b418a67\assembly\ dl2\93ce11ca\a67a0465_a2aac501\xdti.webcontols.dll "
> /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Tempo rary ASP.NET
> Files\nexsurex_working\cd5673eb\1b418a67\thy6lfor. dll" /D:DEBUG=1
> /debug+ "C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Tempo rary
> ASP.NET Files\nexsurex_working\cd5673eb\1b418a67\thy6lfor. 0.vb"
>
> Microsoft (R) Visual Basic .NET Compiler version 7.00.9466
> for Microsoft (R) .NET Framework version 1.00.3705.288
> Copyright (C) Microsoft Corporation 1987-2001. All rights reserved.
> The first developer who was receiving this issue had IT rebuild the
> box, and the problem went away for a day or two, but came back. He is
> currently on the third rebuild, with the application working for three
> consecutive days.
> With this now happening on my machine, I believe this to be an
> application issue, not hardware.
> Any help would be greatly appreciated.

The compiler failed with error code -1073741502.

Any ideals what would cause this ?

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\system32"c:\windows\microsoft.net\framework
\v1.1.4322\csc.exe" /t:library /utf8output /R:"c:\windows\microsoft.net
\framework\v1.1.4322\mscorlib.dll" /R:"c:\windows\microsoft.net
\framework\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\g8avop1s.dll" /R:"c:\windows\assembly\gac
\system.enterpriseservices\1.0.5000.0__b03f5f7f11d 50a3a
\system.enterpriseservices.dll" /R:"c:\windows\microsoft.net\framework
\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\assembly\dl2\9b87984c
\00665a14_66a1c201\interop.wmencagentlocatorlib.dl l" /R:"c:\windows
\assembly\gac\system.data
\1.0.5000.0__b77a5c561934e089\system.data.dll" /R:"c:\windows
\microsoft.net\framework\v1.1.4322\temporary asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly
\dl2\a9191987\00665a14_66a1c201\interop.wmencagtli b.dll" /R:"c:\windows
\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f 7f11d50a3a
\system.web.mobile.dll" /R:"c:\windows\microsoft.net\framework
\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\assembly
\dl2\8656e736\0009e65d_74d4c701\log4net.dll" /R:"c:\windows
\microsoft.net\framework\v1.1.4322\temporary asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly\dl 2\e0eb1a8b
\00bdaa62_74d4c701\cnnencodingservices.dll" /R:"c:\windows\assembly\gac
\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\syste m.drawing.dll" /R:"c:
\windows\microsoft.net\framework\v1.1.4322\tempora ry asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly
\dl2\ebf89319\00dcb45c_74d4c701\wmewebsvcagent.dll " /R:"c:\windows
\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e 089\system.xml.dll" /
R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly
\dl2\18b641f9\00665a14_66a1c201\interop.wmencoderl ib.dll" /R:"c:
\windows\assembly\gac\system.web.services\1.0.5000 .0__b03f5f7f11d50a3a
\system.web.services.dll" /R:"c:\windows\microsoft.net\framework
\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\assembly\dl2\b9e5a82b
\00dcb45c_74d4c701\wmewebsvc.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.we b.dll" /out:"C:
\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempora ry ASP.NET Files
\cnnencodingservices\0f9adc62\70fb5ce7\hic1jo5y.dl l" /D:DEBUG /debug+ /
optimize- /warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework
\v1.1.4322\Temporary ASP.NET Files\cnnencodingservices
\0f9adc62\70fb5ce7\hic1jo5y.0.cs"

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.2032
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: namespace ASP {
Line 12: using System;
Line 13: using System.Collections;
Line 14: using System.Collections.Specialized;
Line 15: using System.Configuration;
Line 16: using System.Text;
Line 17: using System.Text.RegularExpressions;
Line 18: using System.Web;
Line 19: using System.Web.Caching;
Line 20: using System.Web.SessionState;
Line 21: using System.Web.Security;
Line 22: using System.Web.UI;
Line 23: using System.Web.UI.WebControls;
Line 24: using System.Web.UI.HtmlControls;
Line 25: using ASP;
Line 26:
Line 27: #line 2 "c:\windows\microsoft.net\framework
\v1.1.4322\Config\DefaultWsdlHelpGenerator.aspx"
Line 28: using System.IO;
Line 29:
Line 30: #line default
Line 31: #line hidden
Line 32:
Line 33: #line 3 "c:\windows\microsoft.net\framework
\v1.1.4322\Config\DefaultWsdlHelpGenerator.aspx"
Line 34: using System.Xml.Serialization;you had the app running while you were trying to build it. Not going to
happen. Close down the web app first then try and build it again.

<rkcons@dotnet.itags.org.gmail.comwrote in message
news:1190212403.368282.126580@dotnet.itags.org.57g2000hsv.googlegro ups.com...

Quote:

Originally Posted by

Any ideals what would cause this ?
>
>
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\system32"c:\windows\microsoft.net\framework
\v1.1.4322\csc.exe" /t:library /utf8output /R:"c:\windows\microsoft.net
\framework\v1.1.4322\mscorlib.dll" /R:"c:\windows\microsoft.net
\framework\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\g8avop1s.dll" /R:"c:\windows\assembly\gac
\system.enterpriseservices\1.0.5000.0__b03f5f7f11d 50a3a
\system.enterpriseservices.dll" /R:"c:\windows\microsoft.net\framework
\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\assembly\dl2\9b87984c
\00665a14_66a1c201\interop.wmencagentlocatorlib.dl l" /R:"c:\windows
\assembly\gac\system.data
\1.0.5000.0__b77a5c561934e089\system.data.dll" /R:"c:\windows
\microsoft.net\framework\v1.1.4322\temporary asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly
\dl2\a9191987\00665a14_66a1c201\interop.wmencagtli b.dll" /R:"c:\windows
\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f 7f11d50a3a
\system.web.mobile.dll" /R:"c:\windows\microsoft.net\framework
\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\assembly
\dl2\8656e736\0009e65d_74d4c701\log4net.dll" /R:"c:\windows
\microsoft.net\framework\v1.1.4322\temporary asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly\dl 2\e0eb1a8b
\00bdaa62_74d4c701\cnnencodingservices.dll" /R:"c:\windows\assembly\gac
\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\syste m.drawing.dll" /R:"c:
\windows\microsoft.net\framework\v1.1.4322\tempora ry asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly
\dl2\ebf89319\00dcb45c_74d4c701\wmewebsvcagent.dll " /R:"c:\windows
\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e 089\system.xml.dll" /
R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net files
\cnnencodingservices\0f9adc62\70fb5ce7\assembly
\dl2\18b641f9\00665a14_66a1c201\interop.wmencoderl ib.dll" /R:"c:
\windows\assembly\gac\system.web.services\1.0.5000 .0__b03f5f7f11d50a3a
\system.web.services.dll" /R:"c:\windows\microsoft.net\framework
\v1.1.4322\temporary asp.net files\cnnencodingservices
\0f9adc62\70fb5ce7\assembly\dl2\b9e5a82b
\00dcb45c_74d4c701\wmewebsvc.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.we b.dll" /out:"C:
\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempora ry ASP.NET Files
\cnnencodingservices\0f9adc62\70fb5ce7\hic1jo5y.dl l" /D:DEBUG /debug+ /
optimize- /warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework
\v1.1.4322\Temporary ASP.NET Files\cnnencodingservices
\0f9adc62\70fb5ce7\hic1jo5y.0.cs"
>
>
>
>
>
>
>
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.2032
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: namespace ASP {
Line 12: using System;
Line 13: using System.Collections;
Line 14: using System.Collections.Specialized;
Line 15: using System.Configuration;
Line 16: using System.Text;
Line 17: using System.Text.RegularExpressions;
Line 18: using System.Web;
Line 19: using System.Web.Caching;
Line 20: using System.Web.SessionState;
Line 21: using System.Web.Security;
Line 22: using System.Web.UI;
Line 23: using System.Web.UI.WebControls;
Line 24: using System.Web.UI.HtmlControls;
Line 25: using ASP;
Line 26:
Line 27: #line 2 "c:\windows\microsoft.net\framework
\v1.1.4322\Config\DefaultWsdlHelpGenerator.aspx"
Line 28: using System.IO;
Line 29:
Line 30: #line default
Line 31: #line hidden
Line 32:
Line 33: #line 3 "c:\windows\microsoft.net\framework
\v1.1.4322\Config\DefaultWsdlHelpGenerator.aspx"
Line 34: using System.Xml.Serialization;
>

The compiler failed with error code -1073741502

Hi all,
I was working on a little project, worked fine, but now all of a sudden I
get:
The compiler failed with error code -1073741502
as an error message (when running the site, not building).
I have NO idea what's wrong. I changed some code (only very small, which I
did like 10 times before that in the past 15 minutes) and I can't get it
back to work, whatever I do. The details of this error message are:
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\system32> "c:\windows\microsoft.net\framework\v1.1.4322\csc.exe"
/t:library /utf8output
/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\s
ystem.web.mobile.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\system.
data.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net
files\whoissite\d24d73f4\7403d467\assemb
ly\dl2\2f0f1907\a8f077d3_1bcbc401\wh
oissite.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11
d50a3a\system.enterpriseservices.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll"
/R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system.w
eb.dll"
/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll"
/R:"c:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a
\system.web.services.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.x
ml.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\syst
em.drawing.dll"
/out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\whoissite\d24d73f4\7403d467\aydmbx
nx.dll" /D:DEBUG /debug+ /optimize-
/warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary
ASP.NET Files\whoissite\d24d73f4\7403d467\aydmbx
nx.0.cs"
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.2032
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: namespace ASP {
Line 12: using System;
Line 13: using System.Collections;
Line 14: using System.Collections.Specialized;
Line 15: using System.Configuration;
Line 16: using System.Text;
Line 17: using System.Text.RegularExpressions;
Line 18: using System.Web;
Line 19: using System.Web.Caching;
Line 20: using System.Web.SessionState;
Line 21: using System.Web.Security;
Line 22: using System.Web.UI;
Line 23: using System.Web.UI.WebControls;
Line 24: using System.Web.UI.HtmlControls;
Line 25:
Line 26:
Line 27:
[System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
Line 28: public class Global_asax : WhoisSite.Global {
Line 29:
Line 30: private static bool __initialized = false;
Line 31:
Line 32: public Global_asax() {
Line 33: if ((ASP.Global_asax.__initialized == false)) {
Line 34: ASP.Global_asax.__initialized = true;
Line 35: }
Line 36: }
Line 37: }
Line 38: }
Line 39:
But when I only Build the project, it goes fine! I have already deleted the
site from IIS and Added it again, removed the temp folder it shows in
detailed compiler output, but without luck.
HELP?! :D
Thanks,
Razzieok solved it - somehow there was still an instance running in the background
(iexplore.exe) and I terminated them, and it worked again.
"Razzie" <razzieNOSPAM@dotnet.itags.org.quicknet.nl> wrote in message
news:O4o%23czxyEHA.3408@dotnet.itags.org.TK2MSFTNGP10.phx.gbl...
> Hi all,
> I was working on a little project, worked fine, but now all of a sudden I
> get:
> The compiler failed with error code -1073741502
> as an error message (when running the site, not building).
> I have NO idea what's wrong. I changed some code (only very small, which I
> did like 10 times before that in the past 15 minutes) and I can't get it
> back to work, whatever I do. The details of this error message are:
> 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\system32>
> "c:\windows\microsoft.net\framework\v1.1.4322\csc.exe" /t:library
> /utf8output
> /R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a
\system.web.mobile.dll"
> /R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b77a5c561934e089\syste
m.data.dll"
> /R:"c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net
> files\whoissite\d24d73f4\7403d467\assemb
ly\dl2\2f0f1907\a8f077d3_1bcbc401\
whoissite.dll"
> /R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f
11d50a3a\system.enterpriseservices.dll"
> /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll"
> /R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7f11d50a3a\system
.web.dll"
> /R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c561934e089\system.dll
"
> /R:"c:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a
3a\system.web.services.dll"
> /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system
.xml.dll"
> /R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0__b03f5f7f11d50a3a\sy
stem.drawing.dll"
> /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
> Files\whoissite\d24d73f4\7403d467\aydmbx
nx.dll" /D:DEBUG /debug+
> /optimize- /warnaserror /w:1
> "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
> Files\whoissite\d24d73f4\7403d467\aydmbx
nx.0.cs"
>
>
> 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.2032
> 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: namespace ASP {
> Line 12: using System;
> Line 13: using System.Collections;
> Line 14: using System.Collections.Specialized;
> Line 15: using System.Configuration;
> Line 16: using System.Text;
> Line 17: using System.Text.RegularExpressions;
> Line 18: using System.Web;
> Line 19: using System.Web.Caching;
> Line 20: using System.Web.SessionState;
> Line 21: using System.Web.Security;
> Line 22: using System.Web.UI;
> Line 23: using System.Web.UI.WebControls;
> Line 24: using System.Web.UI.HtmlControls;
> Line 25:
> Line 26:
> Line 27: [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
> Line 28: public class Global_asax : WhoisSite.Global {
> Line 29:
> Line 30: private static bool __initialized = false;
> Line 31:
> Line 32: public Global_asax() {
> Line 33: if ((ASP.Global_asax.__initialized == false)) {
> Line 34: ASP.Global_asax.__initialized = true;
> Line 35: }
> Line 36: }
> Line 37: }
> Line 38: }
> Line 39:
>
> But when I only Build the project, it goes fine! I have already deleted
> the site from IIS and Added it again, removed the temp folder it shows in
> detailed compiler output, but without luck.
> HELP?! :D
> Thanks,
> Razzie
>

The compiler failed with error code -1073741502

Hi all,

I was working on a little project, worked fine, but now all of a sudden I
get:

The compiler failed with error code -1073741502

as an error message (when running the site, not building).
I have NO idea what's wrong. I changed some code (only very small, which I
did like 10 times before that in the past 15 minutes) and I can't get it
back to work, whatever I do. The details of this error message are:

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\system32> "c:\windows\microsoft.net\framework\v1.1.4322\csc.e xe"
/t:library /utf8output
/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000 .0__b03f5f7f11d50a3a\system.web.mobile.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b7 7a5c561934e089\system.data.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net
files\whoissite\d24d73f4\7403d467\assembly\dl2\2f0 f1907\a8f077d3_1bcbc401\whoissite.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\mscor lib.dll"
/R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03 f5f7f11d50a3a\system.web.dll"
/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c5 61934e089\system.dll"
/R:"c:\windows\assembly\gac\system.web.services\1.0.50 00.0__b03f5f7f11d50a3a\system.web.services.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77 a5c561934e089\system.xml.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0_ _b03f5f7f11d50a3a\system.drawing.dll"
/out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\whoissite\d24d73f4\7403d467\aydmbxnx.dll" /D:DEBUG /debug+ /optimize-
/warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary
ASP.NET Files\whoissite\d24d73f4\7403d467\aydmbxnx.0.cs"

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.2032
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: namespace ASP {
Line 12: using System;
Line 13: using System.Collections;
Line 14: using System.Collections.Specialized;
Line 15: using System.Configuration;
Line 16: using System.Text;
Line 17: using System.Text.RegularExpressions;
Line 18: using System.Web;
Line 19: using System.Web.Caching;
Line 20: using System.Web.SessionState;
Line 21: using System.Web.Security;
Line 22: using System.Web.UI;
Line 23: using System.Web.UI.WebControls;
Line 24: using System.Web.UI.HtmlControls;
Line 25:
Line 26:
Line 27:
[System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
Line 28: public class Global_asax : WhoisSite.Global {
Line 29:
Line 30: private static bool __initialized = false;
Line 31:
Line 32: public Global_asax() {
Line 33: if ((ASP.Global_asax.__initialized == false)) {
Line 34: ASP.Global_asax.__initialized = true;
Line 35: }
Line 36: }
Line 37: }
Line 38: }
Line 39:

But when I only Build the project, it goes fine! I have already deleted the
site from IIS and Added it again, removed the temp folder it shows in
detailed compiler output, but without luck.
HELP?! :D

Thanks,

Razzieok solved it - somehow there was still an instance running in the background
(iexplore.exe) and I terminated them, and it worked again.

"Razzie" <razzieNOSPAM@dotnet.itags.org.quicknet.nl> wrote in message
news:O4o%23czxyEHA.3408@dotnet.itags.org.TK2MSFTNGP10.phx.gbl...
> Hi all,
> I was working on a little project, worked fine, but now all of a sudden I
> get:
> The compiler failed with error code -1073741502
> as an error message (when running the site, not building).
> I have NO idea what's wrong. I changed some code (only very small, which I
> did like 10 times before that in the past 15 minutes) and I can't get it
> back to work, whatever I do. The details of this error message are:
> 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\system32>
> "c:\windows\microsoft.net\framework\v1.1.4322\csc.e xe" /t:library
> /utf8output
> /R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000 .0__b03f5f7f11d50a3a\system.web.mobile.dll"
> /R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b7 7a5c561934e089\system.data.dll"
> /R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net
> files\whoissite\d24d73f4\7403d467\assembly\dl2\2f0 f1907\a8f077d3_1bcbc401\whoissite.dll"
> /R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll"
> /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscor lib.dll"
> /R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03 f5f7f11d50a3a\system.web.dll"
> /R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c5 61934e089\system.dll"
> /R:"c:\windows\assembly\gac\system.web.services\1.0.50 00.0__b03f5f7f11d50a3a\system.web.services.dll"
> /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77 a5c561934e089\system.xml.dll"
> /R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0_ _b03f5f7f11d50a3a\system.drawing.dll"
> /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
> Files\whoissite\d24d73f4\7403d467\aydmbxnx.dll" /D:DEBUG /debug+
> /optimize- /warnaserror /w:1
> "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
> Files\whoissite\d24d73f4\7403d467\aydmbxnx.0.cs"
>
>
> 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.2032
> 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: namespace ASP {
> Line 12: using System;
> Line 13: using System.Collections;
> Line 14: using System.Collections.Specialized;
> Line 15: using System.Configuration;
> Line 16: using System.Text;
> Line 17: using System.Text.RegularExpressions;
> Line 18: using System.Web;
> Line 19: using System.Web.Caching;
> Line 20: using System.Web.SessionState;
> Line 21: using System.Web.Security;
> Line 22: using System.Web.UI;
> Line 23: using System.Web.UI.WebControls;
> Line 24: using System.Web.UI.HtmlControls;
> Line 25:
> Line 26:
> Line 27: [System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
> Line 28: public class Global_asax : WhoisSite.Global {
> Line 29:
> Line 30: private static bool __initialized = false;
> Line 31:
> Line 32: public Global_asax() {
> Line 33: if ((ASP.Global_asax.__initialized == false)) {
> Line 34: ASP.Global_asax.__initialized = true;
> Line 35: }
> Line 36: }
> Line 37: }
> Line 38: }
> Line 39:
>
> But when I only Build the project, it goes fine! I have already deleted
> the site from IIS and Added it again, removed the temp folder it shows in
> detailed compiler output, but without luck.
> HELP?! :D
> Thanks,
> Razzie

The compiler failed with error code 128

Hi there,
I've seen this error appear a few times in newsgroups but unfortunately I ha
ven't found one that actually provides a solution.
I'm basically deploying a new website into an area at a web hosting company
and when I try to run the site (which runs in our local IIS server), I get t
he following error:
Server Error in '/New' 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.
Detailed Compiler Output:
c:\windows\system32\inetsrv> "c:\windows\microsoft.net\framework\v1.1.4322\c
sc.exe" /t:library /utf8output /R:"c:\windows\microsoft.net\framework\v1.1.4
322\mscorlib.dll" /R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.
5000.0__b03f5f7f11d50a3a\sy
stem.enterpriseservices.dll" /R:"c:\windows\assembly\gac\system.data\1.0.500
0.0__b77a5c561934e089\system.data.dll" /R:"c:\windows\assembly\gac\system.dr
awing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll" /R:"c:\windows\assemb
ly\gac\system.web.mobile\1.
0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll" /R:"c:\windows\microsoft.n
et\framework\v1.1.4322\temporary asp.net files\new\06f40836\72372c12\assembl
y\dl2\4409d694\a285e654_1960c401\csvutil
.dll" /R:"c:\windows\microsoft.net\f
ramework\v1.1.4322\temporar
y asp.net files\new\06f40836\72372c12\assembly\dl2
\96b27431\a470035a_1960c40
1\ohs.dll" /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e0
89\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__b77a5c56193
4e089\system.dll" /R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03f5f7
f11d50a3a\system.web.dll" /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322
\Temporary ASP.NET Files\ne
w\06f40836\72372c12\mzfpukxi.dll" /D:DEBUG /debug+ /optimize- /w:0 "C:\WIND
OWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\new\06f40836\7
2372c12\mzfpukxi.0.cs"
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: namespace ASP {
Line 12: using System;
Line 13: using System.Collections;
Line 14: using System.Collections.Specialized;
Line 15: using System.Configuration;
Line 16: using System.Text;
Line 17: using System.Text.RegularExpressions;
Line 18: using System.Web;
Line 19: using System.Web.Caching;
Line 20: using System.Web.SessionState;
Line 21: using System.Web.Security;
Line 22: using System.Web.UI;
Line 23: using System.Web.UI.WebControls;
Line 24: using System.Web.UI.HtmlControls;
Line 25:
Line 26:
Line 27: [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute
()]
Line 28: public class Global_asax : Ohs.Global {
Line 29:
Line 30: private static bool __initialized = false;
Line 31:
Line 32: public Global_asax() {
Line 33: if ((ASP.Global_asax.__initialized == false)) {
Line 34: ASP.Global_asax.__initialized = true;
Line 35: }
Line 36: }
Line 37: }
Line 38: }
Line 39:
Any help with this would be greatly appreciated.
Many thanks and best regards,
HamiltonHow come Microsoft cannot give a straight answer to this? What is the use of
"MSDN Managed" Discussion Groups if you cannot recieve an answer
to a question concerning a serious problem like this. I have been searching
the web for days trying to find a solution to this problem but nowhere have
I been able to find anything useful, least of all from Microsoft.
Two web sites on our production server suddenly stopped working, only
returning "The compiler failed with error code 128" no matter what aspx page
you request. We have changed permissions, recompiled the projects, installed
them and set them up on different disks with other addresses, reinstalled
.NET Framework;
in short everything but reinstalling Windows 2000 Server. Now we have found
out that the exact same thing happens to new ASP.NET web applications
installed on the
server! It will propably happen to all the existing ones as soon as we, God
forbid, have to change them or fix a bug.
Actually, there is one more thing we have not tried: installing the ASP.NET
1.1 June 2003 Hotfix Rollup Package described in
http://support.microsoft.com/default.aspx?kbid=821156.
We would gladly try this as well but there's one problem: the package is
nowhere to be found...
Could someone please point me to the hot fix or, even better, tell me how to
fix the problem. Thanks in advance!
"Hamilton" wrote:

> Hi there,
> I've seen this error appear a few times in newsgroups but unfortunately I
haven't found one that actually provides a solution.
> I'm basically deploying a new website into an area at a web hosting compan
y and when I try to run the site (which runs in our local IIS server), I get
the following error:
> Server Error in '/New' Application.
> Compilation Error
> Description: An error occurred during the compilation of a resource requir
ed to service this request. Please review the following specific error detai
ls and modify your source code appropriately.
> Compiler Error Message: The compiler failed with error code 128.
> Detailed Compiler Output:
> c:\windows\system32\inetsrv> "c:\windows\microsoft.net\framework\v1.1.4322\csc.exe
" /t:library /utf8output /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.d
ll" /R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11d50a
3a\
system.enterpriseservices.dll" /R:"c:\windows\assembly\gac\system.data\1.0.5
000.0__b77a5c561934e089\system.data.dll" /R:"c:\windows\assembly\gac\system.
drawing\1.0.5000.0__b03f5f7f11d50a3a\system.drawing.dll" /R:"c:\windows\asse
mbly\gac\system.web.mobile\
1.0.5000.0__b03f5f7f11d50a3a\system.web.mobile.dll" /R:"c:\windows\microsoft
.net\framework\v1.1.4322\temporary asp.net files\new\06f40836\72372c12\assem
bly\dl2\4409d694\a285e654_1960c401\csvut
il.dll" /R:"c:\windows\microsoft.net
\framework\v1.1.4322\tempor
ary asp.net files\new\06f40836\72372c12\assembly\dl2
\96b27431\a470035a_1960c
401\ohs.dll" /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934
e089\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__b77
a5c561934e089\system.dll" /R:"c:\windows\assembly\gac\system.web\1.0.5000.0_
_b03f5f7f11d50a3a\system.we
b.dll" /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\new\06f40836\72372c12\mzfpukxi.dll" /D:DEBUG /debug+ /optimize- /w:0
"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\new\06
f40836\72372c12\mzfpukxi.0.
cs"
> 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 wi
ll be lost if
> Line 7: // the code is regenerated.
> Line 8: // </autogenerated>
> Line 9: //---
--
> Line 10:
> Line 11: namespace ASP {
> Line 12: using System;
> Line 13: using System.Collections;
> Line 14: using System.Collections.Specialized;
> Line 15: using System.Configuration;
> Line 16: using System.Text;
> Line 17: using System.Text.RegularExpressions;
> Line 18: using System.Web;
> Line 19: using System.Web.Caching;
> Line 20: using System.Web.SessionState;
> Line 21: using System.Web.Security;
> Line 22: using System.Web.UI;
> Line 23: using System.Web.UI.WebControls;
> Line 24: using System.Web.UI.HtmlControls;
> Line 25:
> Line 26:
> Line 27: [System.Runtime.CompilerServices.CompilerGlobalScopeAttribu
te()]
> Line 28: public class Global_asax : Ohs.Global {
> Line 29:
> Line 30: private static bool __initialized = false;
> Line 31:
> Line 32: public Global_asax() {
> Line 33: if ((ASP.Global_asax.__initialized == false)) {
> Line 34: ASP.Global_asax.__initialized = true;
> Line 35: }
> Line 36: }
> Line 37: }
> Line 38: }
> Line 39:
> Any help with this would be greatly appreciated.
> Many thanks and best regards,
> Hamilton
Any luck solving this? I know doing aspnet_regiis -i works to a point
but then it gets out of whack again.
"Joakim Sundn" <Joakim Sundn@dotnet.itags.org.discussions.microsoft.com> wrote in message news:<90016804-6
DB7-477B-8C95-4F90DA392AEC@dotnet.itags.org.microsoft.com>...
> How come Microsoft cannot give a straight answer to this? What is the use
of
> "MSDN Managed" Discussion Groups if you cannot recieve an answer
> to a question concerning a serious problem like this. I have been searchin
g
> the web for days trying to find a solution to this problem but nowhere hav
e
> I been able to find anything useful, least of all from Microsoft.
> Two web sites on our production server suddenly stopped working, only
> returning "The compiler failed with error code 128" no matter what aspx pa
ge
> you request. We have changed permissions, recompiled the projects, install
ed
> them and set them up on different disks with other addresses, reinstalled
> .NET Framework;
> in short everything but reinstalling Windows 2000 Server. Now we have foun
d
> out that the exact same thing happens to new ASP.NET web applications
> installed on the
> server! It will propably happen to all the existing ones as soon as we, Go
d
> forbid, have to change them or fix a bug.
> Actually, there is one more thing we have not tried: installing the ASP.NE
T
> 1.1 June 2003 Hotfix Rollup Package described in
> http://support.microsoft.com/default.aspx?kbid=821156.
> We would gladly try this as well but there's one problem: the package is
> nowhere to be found...
> Could someone please point me to the hot fix or, even better, tell me how
to
> fix the problem. Thanks in advance!
>
> "Hamilton" wrote:
>
"c:\windows\microsoft.net\framework\v1.1.4322\csc.exe" /t:library
/utf8output /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscorlib.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.5000.0__b03f5f7f11
d50a3a\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\syst
em.drawing.dll"
/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000.0__b03f5f7f11d50a3a\s
ystem.web.mobile.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net
files\new\06f40836\72372c12\assembly\dl2
\4409d694\a285e654_1960c401\csvutil.
dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\temporary asp.net
files\new\06f40836\72372c12\assembly\dl2
\96b27431\a470035a_1960c401\ohs.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77a5c561934e089\system.xml.dll"[color=d
arkred]
> /R:"c:\windows\assembly\gac\system.web.services\1.0.5000.0__b03f5f7f11d50a3a\syst
em.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.w
eb.dll"
/out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\new\06f40836\72372c12\mzfpukxi.dll" /D:DEBUG /debug+ /optimize-
/w:0 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET
Files\new\06f40836\72372c12\mzfpukxi.0.cs"

The compiler failed with error code -1073741819.

Anyone,
I have an ASP.NET webapp in the 1.0 framework that has been working for
the past 2ish years.
Two ws ago a new developer received the following error when trying
to run the app in debug mode.
"The instruction at "0x77f57ec6" referenced memory at "0x797800004".
The memory could not be "written".

>From the IDE, before I attempt to run in debug mode I can "right click"
a given aspx file and "View Code". I can also "right click" and "View
in Designer". When I attempt to "right click" and "View in Browser" I
receive the following 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.
The detailed Compiler Output is as follows:
C:\WINDOWS\system32>
"c:\windows\microsoft.net\framework\v1.0.3705\vbc.exe" /t:library
/utf8output
/R:" c:\windows\assembly\gac\crystaldecisions
.web\9.1.3300.0__692fbea5521e130
4\crystaldecisions.web.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\5642a9da\c0eb1c67_a2aa
c501\xsm2.dll"
/R:" c:\windows\assembly\gac\crystaldecisions
.crystalreports.engine\9.1.3300.
0__692fbea5521e1304\crystaldecisions.crystalreports.engine.dll"
/R:"c:\windows\assembly\gac\system.web.services\1.0.3300.0__b03f5f7f11d50a3a
\system.web.services.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.3300.0__b03f5f7f11d50a3a\syst
em.drawing.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\d898667e\c40d926c_a2aa
c501\nexsurex.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.3300.0__b77a5c561934e089\system.x
ml.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\430dcb9f\147ce564_a2aa
c501\xaccounting.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\2c66c8b1\6c3aaed6_9baa
c501\controls.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\6834c7bf\32afd8a9_9baa
c501\dalplugindetailedlog.dll"
/R:" c:\windows\assembly\gac\crystaldecisions
.reportsource\9.1.3300.0__692fbe
a5521e1304\crystaldecisions.reportsource.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\dade88bd\0060bd99_534f
c201\interop.vba.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\9f86c1cb\0ac2eba9_9baa
c501\xdom3.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\b0170de4\b0608c65_a2aa
c501\commonlib.dll"
/R:" c:\windows\assembly\gac\crystaldecisions
.shared\9.1.3300.0__692fbea5521e
1304\crystaldecisions.shared.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\1edb7ee1\f99ae4a9_9baa
c501\xdba3.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.3300.0__b77a5c561934e089\system.
data.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.3300.0__b03f5f7f11
d50a3a\system.enterpriseservices.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\7996cee9\e873dda9_9baa
c501\vcrpagenavigator.dll"
/R:"c:\windows\assembly\gac\system\1.0.3300.0__b77a5c561934e089\system.dll"
/R:"c:\windows\assembly\gac\system.web\1.0.3300.0__b03f5f7f11d50a3a\system.w
eb.dll"
/R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\93ce11ca\a67a0465_a2aa
c501\xdti.webcontols.dll"
/out:"C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Temporary ASP.NET
Files\nexsurex_working\cd5673eb\1b418a67
\thy6lfor.dll" /D:DEBUG=1
/debug+ "C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Temporary
ASP.NET Files\nexsurex_working\cd5673eb\1b418a67
\thy6lfor.0.vb"
Microsoft (R) Visual Basic .NET Compiler version 7.00.9466
for Microsoft (R) .NET Framework version 1.00.3705.288
Copyright (C) Microsoft Corporation 1987-2001. All rights reserved.
The first developer who was receiving this issue had IT rebuild the
box, and the problem went away for a day or two, but came back. He is
currently on the third rebuild, with the application working for three
consecutive days.
With this now happening on my machine, I believe this to be an
application issue, not hardware.
Any help would be greatly appreciated.Check your hard disk(s) for errors.
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
Ven, y hablemos de ASP.NET...
======================
<robert_m_fisher@dotnet.itags.org.yahoo.com> wrote in message
news:1125104686.827098.248920@dotnet.itags.org.g14g2000cwa.googlegroups.com...
> Anyone,
> I have an ASP.NET webapp in the 1.0 framework that has been working for
> the past 2ish years.
> Two ws ago a new developer received the following error when trying
> to run the app in debug mode.
> "The instruction at "0x77f57ec6" referenced memory at "0x797800004".
> The memory could not be "written".
>
> a given aspx file and "View Code". I can also "right click" and "View
> in Designer". When I attempt to "right click" and "View in Browser" I
> receive the following 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.
> The detailed Compiler Output is as follows:
> C:\WINDOWS\system32>
> "c:\windows\microsoft.net\framework\v1.0.3705\vbc.exe" /t:library
> /utf8output
> /R:" c:\windows\assembly\gac\crystaldecisions
.web\9.1.3300.0__692fbea5521e1
304\crystaldecisions.web.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\5642a9da\c0eb1c67_a2
aac501\xsm2.dll"
> /R:" c:\windows\assembly\gac\crystaldecisions
.crystalreports.engine\9.1.330
0.0__692fbea5521e1304\crystaldecisions.crystalreports.engine.dll"
> /R:"c:\windows\assembly\gac\system.web.services\1.0.3300.0__b03f5f7f11d50a
3a\system.web.services.dll"
> /R:"c:\windows\assembly\gac\system.drawing\1.0.3300.0__b03f5f7f11d50a3a\sy
stem.drawing.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\d898667e\c40d926c_a2
aac501\nexsurex.dll"
> /R:"c:\windows\assembly\gac\system.xml\1.0.3300.0__b77a5c561934e089\system
.xml.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\430dcb9f\147ce564_a2
aac501\xaccounting.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\2c66c8b1\6c3aaed6_9b
aac501\controls.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\6834c7bf\32afd8a9_9b
aac501\dalplugindetailedlog.dll"
> /R:" c:\windows\assembly\gac\crystaldecisions
.reportsource\9.1.3300.0__692f
bea5521e1304\crystaldecisions.reportsource.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\dade88bd\0060bd99_53
4fc201\interop.vba.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\9f86c1cb\0ac2eba9_9b
aac501\xdom3.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\b0170de4\b0608c65_a2
aac501\commonlib.dll"
> /R:" c:\windows\assembly\gac\crystaldecisions
.shared\9.1.3300.0__692fbea552
1e1304\crystaldecisions.shared.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\1edb7ee1\f99ae4a9_9b
aac501\xdba3.dll"
> /R:"c:\windows\assembly\gac\system.data\1.0.3300.0__b77a5c561934e089\syste
m.data.dll"
> /R:"c:\windows\assembly\gac\system.enterpriseservices\1.0.3300.0__b03f5f7f
11d50a3a\system.enterpriseservices.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\7996cee9\e873dda9_9b
aac501\vcrpagenavigator.dll"
> /R:"c:\windows\assembly\gac\system\1.0.3300.0__b77a5c561934e089\system.dll
"
> /R:"c:\windows\assembly\gac\system.web\1.0.3300.0__b03f5f7f11d50a3a\system
.web.dll"
> /R:"c:\windows\microsoft.net\framework\v1.0.3705\temporary asp.net
> files\nexsurex_working\cd5673eb\1b418a67
\assembly\dl2\93ce11ca\a67a0465_a2
aac501\xdti.webcontols.dll"
> /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Temporary ASP.NET
> Files\nexsurex_working\cd5673eb\1b418a67
\thy6lfor.dll" /D:DEBUG=1
> /debug+ "C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\Temporary
> ASP.NET Files\nexsurex_working\cd5673eb\1b418a67
\thy6lfor.0.vb"
>
> Microsoft (R) Visual Basic .NET Compiler version 7.00.9466
> for Microsoft (R) .NET Framework version 1.00.3705.288
> Copyright (C) Microsoft Corporation 1987-2001. All rights reserved.
> The first developer who was receiving this issue had IT rebuild the
> box, and the problem went away for a day or two, but came back. He is
> currently on the third rebuild, with the application working for three
> consecutive days.
> With this now happening on my machine, I believe this to be an
> application issue, not hardware.
> Any help would be greatly appreciated.

The compiler failed with error code 128

I have a C#.NET application running perfectly on my notebook but when I copy it up to our development server I get the above error message. The Compiler Output has "C:\Program Files\SAP\ITS\6.20\WGATE\traces> ...

SAP\ITS is an ISAPI Filter that runs to provide Web access to SAP. My application not using SAP for anything.

We found one Weblog that mentioned a rogue ISAPI filter and moving it's priority below ASP.NET fixed their problem. We tried moving the ITS ISAPI filter below ASP.NET, rebooted the machine and it worked. We don't know if the reboot fixed it or the moving of the ISAPI filter.

After I made a change to the C# application and re-copied the .DLL to the server it died again with the same message.Check out this discussion on GotDotNet:

http://www.gotdotnet.com/community/messageboard/Thread.aspx?id=139158&Page=1

The compiler failed with error code 128

HELP!!!!
We have got a W2k server running IIS5 with .NET framework 1.1 and .NET
framework SP1. All ASP.NET applications cannot run on this box. It all
returned with the same error:
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.
I have made sure there is only ASP.NET ISAPI filter running and tried
aspnet_iis -i. Basically I'm out of ideas. Can someone please tell me what
the heck is going on here?
RogerHi, Roger.
I googled for "The compiler failed with error code 128"
and found a few references. The most promising are :
http://www.sitepoint.com/forums/pri...ad.php?t=164998
where it's reported that either
http://www.hanselman.com/blog/Perma...b4.
aspx
or
http://www.webservertalk.com/Uwe/Fo...
irus_k=100252
Here's the Google search,
to facilitate your search for more info:
http://www.google.com/search?as_q=&...ch=&safe=images
Good luck !
Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
=====================
"Roger Wang" <rogerw@dotnet.itags.org.sybrel.com> wrote in message
news:uXyaKb$CFHA.3376@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
> HELP!!!!
> We have got a W2k server running IIS5 with .NET framework 1.1 and .NET
> framework SP1. All ASP.NET applications cannot run on this box. It all
> returned with the same error:
> 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.
>
> I have made sure there is only ASP.NET ISAPI filter running and tried
> aspnet_iis -i. Basically I'm out of ideas. Can someone please tell me what
> the heck is going on here?
> Roger
>
I have the same error too.
I installed the SP1 of .NET Framework:
http://www.microsoft.com/downloads/...db-a83353618b38
and when I restarted my computer I could see my aspx pages, but then, when I
opened Visual Studio.NET and I continued with my ASP.NET application, when I
debug my app the error occurred again.
I don't know why, and I don't know if there's a good solution
I updated Windows but the problem continues.
I have Windows 2000 Sever with SP3.
I hope someone can help me.
Regards.
"Juan T. Llibre" wrote:

> Hi, Roger.
> I googled for "The compiler failed with error code 128"
> and found a few references. The most promising are :
> http://www.sitepoint.com/forums/pri...ad.php?t=164998
> where it's reported that either
> http://www.hanselman.com/blog/Perma...b
4.aspx
> or
> http://www.webservertalk.com/Uwe/Fo...ode-128

> solved the problem.
> Though both links refer to faulty ISAPI filter
> issues, which you say you've discarded, it might
> help you to get the background info at those links.
> There's an additional comment by Jacob Yang
> ( Microsoft Online Partner Support ) which refers
> that the issue might be related to this backdoor trojan:
> http://de.mcafee.com/root/genericVI...&virus_k=100252
> Here's the Google search,
> to facilitate your search for more info:
> http://www.google.com/search?as_q=&...ch=&safe=images
> Good luck !
>
> Juan T. Llibre
> ASP.NET MVP
> http://asp.net.do/foros/
> Foros de ASP.NET en Espa?ol
> =====================
> "Roger Wang" <rogerw@dotnet.itags.org.sybrel.com> wrote in message
> news:uXyaKb$CFHA.3376@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
>
>

Monday, March 26, 2012

The compiler failed with error code 128

Hi there,

I've seen this error appear a few times in newsgroups but unfortunately I haven't found one that actually provides a solution.

I'm basically deploying a new website into an area at a web hosting company and when I try to run the site (which runs in our local IIS server), I get the following error:
Server Error in '/New' 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.

Detailed Compiler Output:
c:\windows\system32\inetsrv> "c:\windows\microsoft.net\framework\v1.1.4322\csc.e xe" /t:library /utf8output /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscor lib.dll" /R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll" /R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b7 7a5c561934e089\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\microsoft.net\framework\v1.1.4322\tempo rary asp.net files\new\06f40836\72372c12\assembly\dl2\4409d694\ a285e654_1960c401\csvutil.dll" /R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net files\new\06f40836\72372c12\assembly\dl2\96b27431\ a470035a_1960c401\ohs.dll" /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77 a5c561934e089\system.xml.dll" /R:"c:\windows\assembly\gac\system.web.services\1.0.50 00.0__b03f5f7f11d50a3a\system.web.services.dll" /R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c5 61934e089\system.dll" /R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03 f5f7f11d50a3a\system.web.dll" /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\new\06f40836\72372c12\mzfpukxi.dll" /D:DEBUG /debug+ /optimize- /w:0 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\new\06f40836\72372c12\mzfpukxi.0.cs"

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: namespace ASP {
Line 12: using System;
Line 13: using System.Collections;
Line 14: using System.Collections.Specialized;
Line 15: using System.Configuration;
Line 16: using System.Text;
Line 17: using System.Text.RegularExpressions;
Line 18: using System.Web;
Line 19: using System.Web.Caching;
Line 20: using System.Web.SessionState;
Line 21: using System.Web.Security;
Line 22: using System.Web.UI;
Line 23: using System.Web.UI.WebControls;
Line 24: using System.Web.UI.HtmlControls;
Line 25:
Line 26:
Line 27: [System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
Line 28: public class Global_asax : Ohs.Global {
Line 29:
Line 30: private static bool __initialized = false;
Line 31:
Line 32: public Global_asax() {
Line 33: if ((ASP.Global_asax.__initialized == false)) {
Line 34: ASP.Global_asax.__initialized = true;
Line 35: }
Line 36: }
Line 37: }
Line 38: }
Line 39:

Any help with this would be greatly appreciated.

Many thanks and best regards,

HamiltonAny luck solving this? I know doing aspnet_regiis -i works to a point
but then it gets out of whack again.

"Joakim Sundn" <Joakim Sundn@dotnet.itags.org.discussions.microsoft.com> wrote in message news:<90016804-6DB7-477B-8C95-4F90DA392AEC@dotnet.itags.org.microsoft.com>...
> How come Microsoft cannot give a straight answer to this? What is the use of
> "MSDN Managed" Discussion Groups if you cannot recieve an answer
> to a question concerning a serious problem like this. I have been searching
> the web for days trying to find a solution to this problem but nowhere have
> I been able to find anything useful, least of all from Microsoft.
> Two web sites on our production server suddenly stopped working, only
> returning "The compiler failed with error code 128" no matter what aspx page
> you request. We have changed permissions, recompiled the projects, installed
> them and set them up on different disks with other addresses, reinstalled
> .NET Framework;
> in short everything but reinstalling Windows 2000 Server. Now we have found
> out that the exact same thing happens to new ASP.NET web applications
> installed on the
> server! It will propably happen to all the existing ones as soon as we, God
> forbid, have to change them or fix a bug.
> Actually, there is one more thing we have not tried: installing the ASP.NET
> 1.1 June 2003 Hotfix Rollup Package described in
> http://support.microsoft.com/default.aspx?kbid=821156.
> We would gladly try this as well but there's one problem: the package is
> nowhere to be found...
> Could someone please point me to the hot fix or, even better, tell me how to
> fix the problem. Thanks in advance!
>
> "Hamilton" wrote:
> > Hi there,
> > I've seen this error appear a few times in newsgroups but unfortunately I haven't found one that actually provides a solution.
> > I'm basically deploying a new website into an area at a web hosting company and when I try to run the site (which runs in our local IIS server), I get the following error:
> > Server Error in '/New' 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.
> > Detailed Compiler Output:
> > c:\windows\system32\inetsrv>
"c:\windows\microsoft.net\framework\v1.1.4322\csc.e xe" /t:library
/utf8output /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscor lib.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b7 7a5c561934e089\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\microsoft.net\framework\v1.1.4322\tempo rary asp.net
files\new\06f40836\72372c12\assembly\dl2\4409d694\ a285e654_1960c401\csvutil.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net
files\new\06f40836\72372c12\assembly\dl2\96b27431\ a470035a_1960c401\ohs.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77 a5c561934e089\system.xml.dll"
> /R:"c:\windows\assembly\gac\system.web.services\1.0.50 00.0__b03f5f7f11d50a3a\system.web.services.dll"
/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c5 61934e089\system.dll"
/R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03 f5f7f11d50a3a\system.web.dll"
/out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\new\06f40836\72372c12\mzfpukxi.dll" /D:DEBUG /debug+ /optimize-
/w:0 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\new\06f40836\72372c12\mzfpukxi.0.cs"
> > 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: namespace ASP {
> > Line 12: using System;
> > Line 13: using System.Collections;
> > Line 14: using System.Collections.Specialized;
> > Line 15: using System.Configuration;
> > Line 16: using System.Text;
> > Line 17: using System.Text.RegularExpressions;
> > Line 18: using System.Web;
> > Line 19: using System.Web.Caching;
> > Line 20: using System.Web.SessionState;
> > Line 21: using System.Web.Security;
> > Line 22: using System.Web.UI;
> > Line 23: using System.Web.UI.WebControls;
> > Line 24: using System.Web.UI.HtmlControls;
> > Line 25:
> > Line 26:
> > Line 27: [System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
> > Line 28: public class Global_asax : Ohs.Global {
> > Line 29:
> > Line 30: private static bool __initialized = false;
> > Line 31:
> > Line 32: public Global_asax() {
> > Line 33: if ((ASP.Global_asax.__initialized == false)) {
> > Line 34: ASP.Global_asax.__initialized = true;
> > Line 35: }
> > Line 36: }
> > Line 37: }
> > Line 38: }
> > Line 39:
> > Any help with this would be greatly appreciated.
> > Many thanks and best regards,
> > Hamilton
Hi there,

The same error message is coming for me Please send me any solution
immediately
Thanks in advance.

Regards,
Amruth..

"Hamilton" wrote:

> Hi there,
> I've seen this error appear a few times in newsgroups but unfortunately I haven't found one that actually provides a solution.
> I'm basically deploying a new website into an area at a web hosting company and when I try to run the site (which runs in our local IIS server), I get the following error:
> Server Error in '/New' 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.
> Detailed Compiler Output:
> c:\windows\system32\inetsrv> "c:\windows\microsoft.net\framework\v1.1.4322\csc.e xe" /t:library /utf8output /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscor lib.dll" /R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.5000.0__b03f5f7f11d50a3a\system.enterpriseserv ices.dll" /R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b7 7a5c561934e089\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\microsoft.net\framework\v1.1.4322\tempo rary asp.net files\new\06f40836\72372c12\assembly\dl2\4409d694\ a285e654_1960c401\csvutil.dll" /R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net files\new\06f40836\72372c12\assembly\dl2\96b27431\ a470035a_1960c401\ohs.dll" /R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77 a5c561934e089\system.xml.dll"
/R:"c:\windows\assembly\gac\system.web.services\1.0.50 00.0__b03f5f7f11d50a3a\system.web.services.dll" /R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c5 61934e089\system.dll" /R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03 f5f7f11d50a3a\system.web.dll" /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\new\06f40836\72372c12\mzfpukxi.dll" /D:DEBUG /debug+ /optimize- /w:0 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\new\06f40836\72372c12\mzfpukxi.0.cs"
> 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: namespace ASP {
> Line 12: using System;
> Line 13: using System.Collections;
> Line 14: using System.Collections.Specialized;
> Line 15: using System.Configuration;
> Line 16: using System.Text;
> Line 17: using System.Text.RegularExpressions;
> Line 18: using System.Web;
> Line 19: using System.Web.Caching;
> Line 20: using System.Web.SessionState;
> Line 21: using System.Web.Security;
> Line 22: using System.Web.UI;
> Line 23: using System.Web.UI.WebControls;
> Line 24: using System.Web.UI.HtmlControls;
> Line 25:
> Line 26:
> Line 27: [System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
> Line 28: public class Global_asax : Ohs.Global {
> Line 29:
> Line 30: private static bool __initialized = false;
> Line 31:
> Line 32: public Global_asax() {
> Line 33: if ((ASP.Global_asax.__initialized == false)) {
> Line 34: ASP.Global_asax.__initialized = true;
> Line 35: }
> Line 36: }
> Line 37: }
> Line 38: }
> Line 39:
> Any help with this would be greatly appreciated.
> Many thanks and best regards,
> Hamilton
I could only find links to possible solutions, but it is all I can
contribute.

http://www.hanselman.com/blog/Perma...32-9fad081eaab4

They have some updates on this one, but if this is with your hosting
company, should it be their problem to diagnose?

bill
"Amruth" <Amruth@dotnet.itags.org.discussions.microsoft.com> wrote in message
news:5EE14474-DBE6-4DA2-AECD-77258949392B@dotnet.itags.org.microsoft.com...
> Hi there,
> The same error message is coming for me Please send me any solution
> immediately
> Thanks in advance.
>
> Regards,
> Amruth..
> "Hamilton" wrote:
> > Hi there,
> > I've seen this error appear a few times in newsgroups but unfortunately
I haven't found one that actually provides a solution.
> > I'm basically deploying a new website into an area at a web hosting
company and when I try to run the site (which runs in our local IIS server),
I get the following error:
> > Server Error in '/New' 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.
> > Detailed Compiler Output:
> > c:\windows\system32\inetsrv>
"c:\windows\microsoft.net\framework\v1.1.4322\csc.e xe" /t:library
/utf8output /R:"c:\windows\microsoft.net\framework\v1.1.4322\mscor lib.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservices\ 1.0.5000.0__b03f5f7f11
d50a3a\system.enterpriseservices.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.5000.0__b7 7a5c561934e089\system.
data.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.5000.0_ _b03f5f7f11d50a3a\syst
em.drawing.dll"
/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5000 .0__b03f5f7f11d50a3a\s
ystem.web.mobile.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net
files\new\06f40836\72372c12\assembly\dl2\4409d694\ a285e654_1960c401\csvutil.
dll" /R:"c:\windows\microsoft.net\framework\v1.1.4322\tempo rary asp.net
files\new\06f40836\72372c12\assembly\dl2\96b27431\ a470035a_1960c401\ohs.dll"
/R:"c:\windows\assembly\gac\system.xml\1.0.5000.0__b77 a5c561934e089\system.x
ml.dll"
/R:"c:\windows\assembly\gac\system.web.services\1.0.50 00.0__b03f5f7f11d50a3a
\system.web.services.dll"
/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a5c5 61934e089\system.dll"
/R:"c:\windows\assembly\gac\system.web\1.0.5000.0__b03 f5f7f11d50a3a\system.w
eb.dll" /out:"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\new\06f40836\72372c12\mzfpukxi.dll" /D:DEBUG /debug+ /optimize- /w:0
"C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\new\06f40836\72372c12\mzfpukxi.0.cs"
> > 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: namespace ASP {
> > Line 12: using System;
> > Line 13: using System.Collections;
> > Line 14: using System.Collections.Specialized;
> > Line 15: using System.Configuration;
> > Line 16: using System.Text;
> > Line 17: using System.Text.RegularExpressions;
> > Line 18: using System.Web;
> > Line 19: using System.Web.Caching;
> > Line 20: using System.Web.SessionState;
> > Line 21: using System.Web.Security;
> > Line 22: using System.Web.UI;
> > Line 23: using System.Web.UI.WebControls;
> > Line 24: using System.Web.UI.HtmlControls;
> > Line 25:
> > Line 26:
> > Line 27:
[System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
> > Line 28: public class Global_asax : Ohs.Global {
> > Line 29:
> > Line 30: private static bool __initialized = false;
> > Line 31:
> > Line 32: public Global_asax() {
> > Line 33: if ((ASP.Global_asax.__initialized == false)) {
> > Line 34: ASP.Global_asax.__initialized = true;
> > Line 35: }
> > Line 36: }
> > Line 37: }
> > Line 38: }
> > Line 39:
> > Any help with this would be greatly appreciated.
> > Many thanks and best regards,
> > Hamilton

The compiler failed with error code 128

HELP!!!!

We have got a W2k server running IIS5 with .NET framework 1.1 and .NET
framework SP1. All ASP.NET applications cannot run on this box. It all
returned with the same error:

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.

I have made sure there is only ASP.NET ISAPI filter running and tried
aspnet_iis -i. Basically I'm out of ideas. Can someone please tell me what
the heck is going on here?

RogerHi, Roger.

I googled for "The compiler failed with error code 128"
and found a few references. The most promising are :

http://www.sitepoint.com/forums/pri...ad.php?t=164998
where it's reported that either
http://www.hanselman.com/blog/Perma...ad081eaab4.aspx
or
http://www.dotnetmonster.com/Uwe/Fo...-error-code-128
solved the problem.

Though both links refer to faulty ISAPI filter
issues, which you say you've discarded, it might
help you to get the background info at those links.

There's an additional comment by Jacob Yang
( Microsoft Online Partner Support ) which refers
that the issue might be related to this backdoor trojan:
http://de.mcafee.com/root/genericVI...&virus_k=100252

Here's the Google search,
to facilitate your search for more info:

http://www.google.com/search?as_q=&...ch=&safe=images

Good luck !

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Espaol
=====================

"Roger Wang" <rogerw@dotnet.itags.org.sybrel.com> wrote in message
news:uXyaKb$CFHA.3376@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
> HELP!!!!
> We have got a W2k server running IIS5 with .NET framework 1.1 and .NET
> framework SP1. All ASP.NET applications cannot run on this box. It all
> returned with the same error:
> 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.
>
> I have made sure there is only ASP.NET ISAPI filter running and tried
> aspnet_iis -i. Basically I'm out of ideas. Can someone please tell me what
> the heck is going on here?
> Roger
I have the same error too.
I installed the SP1 of .NET Framework:
http://www.microsoft.com/downloads/...db-a83353618b38
and when I restarted my computer I could see my aspx pages, but then, when I
opened Visual Studio.NET and I continued with my ASP.NET application, when I
debug my app the error occurred again.
I don't know why, and I don't know if there's a good solution
I updated Windows but the problem continues.
I have Windows 2000 Sever with SP3.
I hope someone can help me.
Regards.

"Juan T. Llibre" wrote:

> Hi, Roger.
> I googled for "The compiler failed with error code 128"
> and found a few references. The most promising are :
> http://www.sitepoint.com/forums/pri...ad.php?t=164998
> where it's reported that either
> http://www.hanselman.com/blog/Perma...ad081eaab4.aspx
> or
> http://www.dotnetmonster.com/Uwe/Fo...-error-code-128
> solved the problem.
> Though both links refer to faulty ISAPI filter
> issues, which you say you've discarded, it might
> help you to get the background info at those links.
> There's an additional comment by Jacob Yang
> ( Microsoft Online Partner Support ) which refers
> that the issue might be related to this backdoor trojan:
> http://de.mcafee.com/root/genericVI...&virus_k=100252
> Here's the Google search,
> to facilitate your search for more info:
> http://www.google.com/search?as_q=&...ch=&safe=images
> Good luck !
>
> Juan T. Llibre
> ASP.NET MVP
> http://asp.net.do/foros/
> Foros de ASP.NET en Espa?ol
> =====================
> "Roger Wang" <rogerw@dotnet.itags.org.sybrel.com> wrote in message
> news:uXyaKb$CFHA.3376@dotnet.itags.org.TK2MSFTNGP12.phx.gbl...
> > HELP!!!!
> > We have got a W2k server running IIS5 with .NET framework 1.1 and .NET
> > framework SP1. All ASP.NET applications cannot run on this box. It all
> > returned with the same error:
> > 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.
> > I have made sure there is only ASP.NET ISAPI filter running and tried
> > aspnet_iis -i. Basically I'm out of ideas. Can someone please tell me what
> > the heck is going on here?
> > Roger
>