472,794 Members | 1,851 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,794 software developers and data experts.

ASP.NET page compilation error

I made some project changes (which seems it doesn't help if I undo) which
have created compilation error:

"
Server Error in '/PCSWebApp1' 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: CS1595: 'PCSWebApp1.Global' is defined in multiple
places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\ASPdb.DLL'

Source Error:

Line 26:
Line 27: [System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
Line 28: public class Global_asax : PCSWebApp1.Global {
Line 29:
Line 30: private static bool __initialized = false;
Source File: c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs Line: 28

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\ms corlib.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.5000 .0__b03f5f7f11d50a3a\system.drawing.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\aspdb.dll"
/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5 000.0__b03f5f7f11d50a3a\system.web.mobile.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\eb 91394c\1a9b1821_2f2fc501\aspdbapp.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.5000.0_ _b77a5c561934e089\system.data.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservic es\1.0.5000.0__b03f5f7f11d50a3a\system.enterprises ervices.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.xml.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\2a 56278c\2e93d48f_2f2fc501\pcswebapp1.dll"
/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a 5c561934e089\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\pcswebapp1\63c74586\45a51b27\evkipkjp.dll" /D:DEBUG /debug+ /optimize-
/warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary
ASP.NET Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs"
Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs(2 8,32): error CS1595:
'PCSWebApp1.Global' is defined in multiple places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\ASPdb.DLL'

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: 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 : PCSWebApp1.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:

"
Whatever I do it seems I can't make this error go away. Any suggestions?
Nov 17 '05 #1
6 2165
Try deleting the pcswebapp folder at:
c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\

and then delete everything at C:\Documents and
Settings\%YourLoginName%\VSWebCache including the VSWebCache folder.

And then restart.

Oh.... one more thing. Be sure that you don't have more than one
Global.asax or any other Global class.

I don't know of those things will fix your problem but one or the other of
the first two steps has been the cause whenever changes that I make in code
are not being reflected when I execute.

HTH

Dale Preston
MCAD, MCDBA, MCSE
"Joachim" <Jo*****@discussions.microsoft.com> wrote in message
news:C2**********************************@microsof t.com...
I made some project changes (which seems it doesn't help if I undo) which
have created compilation error:

"
Server Error in '/PCSWebApp1' 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: CS1595: 'PCSWebApp1.Global' is defined in multiple
places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\A
SPdb.DLL'
Source Error:

Line 26:
Line 27: [System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()] Line 28: public class Global_asax : PCSWebApp1.Global {
Line 29:
Line 30: private static bool __initialized = false;
Source File: c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs Line: 28

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\ms corlib.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.5000 .0__b03f5f7f11d50a3a\syst
em.drawing.dll" /R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\a
spdb.dll" /R:"c:\windows\assembly\gac\system.web.mobile\1.0.5 000.0__b03f5f7f11d50a3a\s
ystem.web.mobile.dll" /R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\eb 91394c\1a9b1821_2f2fc501\a
spdbapp.dll" /R:"c:\windows\assembly\gac\system.data\1.0.5000.0_ _b77a5c561934e089\system.
data.dll" /R:"c:\windows\assembly\gac\system.enterpriseservic es\1.0.5000.0__b03f5f7f11
d50a3a\system.enterpriseservices.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\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\2a 56278c\2e93d48f_2f2fc501\p
cswebapp1.dll" /R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a 5c561934e089\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\pcswebapp1\63c74586\45a51b27\evkipkjp.dll" /D:DEBUG /debug+ /optimize- /warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary
ASP.NET Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs"
Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs(2 8,32): error CS1595:
'PCSWebApp1.Global' is defined in multiple places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\A
SPdb.DLL'


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: 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 : PCSWebApp1.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:

"
Whatever I do it seems I can't make this error go away. Any suggestions?

Nov 17 '05 #2
typically, this means that you have two copies of the same dll on your
machine. The easiest way is to search your computer for the offending
assembly and make sure only one exists for that particular application

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_________________________
"Joachim" <Jo*****@discussions.microsoft.com> wrote in message
news:C2**********************************@microsof t.com...
I made some project changes (which seems it doesn't help if I undo) which
have created compilation error:

"
Server Error in '/PCSWebApp1' 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: CS1595: 'PCSWebApp1.Global' is defined in multiple
places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\ASPdb.DLL'

Source Error:

Line 26:
Line 27:
[System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
Line 28: public class Global_asax : PCSWebApp1.Global {
Line 29:
Line 30: private static bool __initialized = false;
Source File: c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary
ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs Line: 28

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\ms corlib.dll"
/R:"c:\windows\assembly\gac\system.drawing\1.0.5000 .0__b03f5f7f11d50a3a\system.drawing.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\aspdb.dll"
/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5 000.0__b03f5f7f11d50a3a\system.web.mobile.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\eb 91394c\1a9b1821_2f2fc501\aspdbapp.dll"
/R:"c:\windows\assembly\gac\system.data\1.0.5000.0_ _b77a5c561934e089\system.data.dll"
/R:"c:\windows\assembly\gac\system.enterpriseservic es\1.0.5000.0__b03f5f7f11d50a3a\system.enterprises ervices.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.xml.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net
files\pcswebapp1\63c74586\45a51b27\assembly\dl2\2a 56278c\2e93d48f_2f2fc501\pcswebapp1.dll"
/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a 5c561934e089\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\pcswebapp1\63c74586\45a51b27\evkipkjp.dll" /D:DEBUG /debug+
/optimize-
/warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary
ASP.NET Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs"
Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs(2 8,32): error CS1595:
'PCSWebApp1.Global' is defined in multiple places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\ASPdb.DLL'

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: 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 : PCSWebApp1.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:

"
Whatever I do it seems I can't make this error go away. Any suggestions?

Nov 17 '05 #3
Thanks Mr. Prestion,

However, I can't delete the information in the WSWebCache folder and I don't
know how to be able to do it. The file seems to be in use but I have no idea
which program that is using it, since I have closed down Visual Studio.

Kind Regards,
Joachim

"Dale Preston" wrote:
Try deleting the pcswebapp folder at:
c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\

and then delete everything at C:\Documents and
Settings\%YourLoginName%\VSWebCache including the VSWebCache folder.

And then restart.

Oh.... one more thing. Be sure that you don't have more than one
Global.asax or any other Global class.

I don't know of those things will fix your problem but one or the other of
the first two steps has been the cause whenever changes that I make in code
are not being reflected when I execute.

HTH

Dale Preston
MCAD, MCDBA, MCSE
"Joachim" <Jo*****@discussions.microsoft.com> wrote in message
news:C2**********************************@microsof t.com...
I made some project changes (which seems it doesn't help if I undo) which
have created compilation error:

"
Server Error in '/PCSWebApp1' 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: CS1595: 'PCSWebApp1.Global' is defined in multiple
places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET

Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\A
SPdb.DLL'

Source Error:

Line 26:
Line 27:

[System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
Line 28: public class Global_asax : PCSWebApp1.Global {
Line 29:
Line 30: private static bool __initialized = false;
Source File: c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary

ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs Line: 28

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\ms corlib.dll"

/R:"c:\windows\assembly\gac\system.drawing\1.0.5000 .0__b03f5f7f11d50a3a\syst
em.drawing.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net

files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\a
spdb.dll"

/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5 000.0__b03f5f7f11d50a3a\s
ystem.web.mobile.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net

files\pcswebapp1\63c74586\45a51b27\assembly\dl2\eb 91394c\1a9b1821_2f2fc501\a
spdbapp.dll"

/R:"c:\windows\assembly\gac\system.data\1.0.5000.0_ _b77a5c561934e089\system.
data.dll"

/R:"c:\windows\assembly\gac\system.enterpriseservic es\1.0.5000.0__b03f5f7f11
d50a3a\system.enterpriseservices.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\microsoft.net\framework\v1.1.4322\te mporary asp.net

files\pcswebapp1\63c74586\45a51b27\assembly\dl2\2a 56278c\2e93d48f_2f2fc501\p
cswebapp1.dll"

/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a 5c561934e089\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\pcswebapp1\63c74586\45a51b27\evkipkjp.dll" /D:DEBUG /debug+

/optimize-
/warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary
ASP.NET Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs"
Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs(2 8,32): error CS1595:
'PCSWebApp1.Global' is defined in multiple places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET

Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\A
SPdb.DLL'



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: 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 : PCSWebApp1.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:

"
Whatever I do it seems I can't make this error go away. Any suggestions?


Nov 17 '05 #4
Mr. Preston,

I managed to delete the files at both locations, but I still had the same
problem.
Then I also found that I have to delete the files in the bin subdirectory of
the project folder to make it work.

Kind Regards,
Joachim

"Dale Preston" wrote:
Try deleting the pcswebapp folder at:
c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\

and then delete everything at C:\Documents and
Settings\%YourLoginName%\VSWebCache including the VSWebCache folder.

And then restart.

Oh.... one more thing. Be sure that you don't have more than one
Global.asax or any other Global class.

I don't know of those things will fix your problem but one or the other of
the first two steps has been the cause whenever changes that I make in code
are not being reflected when I execute.

HTH

Dale Preston
MCAD, MCDBA, MCSE
"Joachim" <Jo*****@discussions.microsoft.com> wrote in message
news:C2**********************************@microsof t.com...
I made some project changes (which seems it doesn't help if I undo) which
have created compilation error:

"
Server Error in '/PCSWebApp1' 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: CS1595: 'PCSWebApp1.Global' is defined in multiple
places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET

Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\A
SPdb.DLL'

Source Error:

Line 26:
Line 27:

[System.Runtime.CompilerServices.CompilerGlobalScop eAttribute()]
Line 28: public class Global_asax : PCSWebApp1.Global {
Line 29:
Line 30: private static bool __initialized = false;
Source File: c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary

ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs Line: 28

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\ms corlib.dll"

/R:"c:\windows\assembly\gac\system.drawing\1.0.5000 .0__b03f5f7f11d50a3a\syst
em.drawing.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net

files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\a
spdb.dll"

/R:"c:\windows\assembly\gac\system.web.mobile\1.0.5 000.0__b03f5f7f11d50a3a\s
ystem.web.mobile.dll"
/R:"c:\windows\microsoft.net\framework\v1.1.4322\te mporary asp.net

files\pcswebapp1\63c74586\45a51b27\assembly\dl2\eb 91394c\1a9b1821_2f2fc501\a
spdbapp.dll"

/R:"c:\windows\assembly\gac\system.data\1.0.5000.0_ _b77a5c561934e089\system.
data.dll"

/R:"c:\windows\assembly\gac\system.enterpriseservic es\1.0.5000.0__b03f5f7f11
d50a3a\system.enterpriseservices.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\microsoft.net\framework\v1.1.4322\te mporary asp.net

files\pcswebapp1\63c74586\45a51b27\assembly\dl2\2a 56278c\2e93d48f_2f2fc501\p
cswebapp1.dll"

/R:"c:\windows\assembly\gac\system\1.0.5000.0__b77a 5c561934e089\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\pcswebapp1\63c74586\45a51b27\evkipkjp.dll" /D:DEBUG /debug+

/optimize-
/warnaserror /w:1 "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary
ASP.NET Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs"
Microsoft (R) Visual C# .NET Compiler version 7.10.3052.4
for Microsoft (R) .NET Framework version 1.1.4322
Copyright (C) Microsoft Corporation 2001-2002. All rights reserved.

c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET
Files\pcswebapp1\63c74586\45a51b27\evkipkjp.0.cs(2 8,32): error CS1595:
'PCSWebApp1.Global' is defined in multiple places; using definition from
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temp orary ASP.NET

Files\pcswebapp1\63c74586\45a51b27\assembly\dl2\62 413afb\ccf3302b_2a2fc501\A
SPdb.DLL'



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: 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 : PCSWebApp1.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:

"
Whatever I do it seems I can't make this error go away. Any suggestions?


Nov 17 '05 #5
Have you created a Application with the folder in IIS?
Nov 17 '05 #6
Joachim wrote:
Thanks Mr. Prestion,

However, I can't delete the information in the WSWebCache folder and I don't
know how to be able to do it. The file seems to be in use but I have no idea
which program that is using it, since I have closed down Visual Studio.

Kind Regards,
Joachim

IIS can still hold a lock on those files. Kill the aspnet_wp.exe process
(it restarts immediately) and the lock is gone.
"Dale Preston" wrote:

Try deleting the pcswebapp folder at:
c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Tempo rary ASP.NET Files\

and then delete everything at C:\Documents and
Settings\%YourLoginName%\VSWebCache including the VSWebCache folder.

And then restart.


--
Hans Kesting
Nov 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Raphael Gluck | last post by:
Hi everyone I'm currently testing out my beta site www.tripak.me.uk Which has a database in the center of the page, taking you thru four pages of my database. On my final page listing.asp I...
3
by: Jensen Bredal | last post by:
Hello, I'm doing localhost developpement on a win2k3 server . When i lunch the default page i get the following. How do i resolve it? many thanks in advance Server Error in '/MultiTest'...
3
by: g3000 | last post by:
I have a problem with a Visual Studio 2005 web project. I have two pages. SelectProject.aspx and ShowProject.aspx The first page ( SelectProject.aspx) has two drop down lists. After the user...
0
by: Stimp | last post by:
I've created an aspx page called HistoryManage.aspx. The page works fine on my local machine but when I load it off the web I get the following strange error... Compilation Error...
2
by: mwallis76 | last post by:
I am in the stages of pushing up web app to a production server and I am running into an error that I cannot seem trace down. I have a page that allows one to change their password and runs just...
0
by: jmawebco | last post by:
I have a project I'm working on in VS2005 using vb.net with a MSSql 2005 backend. Everytime I try to run the application I get the same error message; ********* ERROR ********* Compilation...
0
by: Therasa | last post by:
Hi All, I have created a sample Application for Ajax Enabled Website and in that i have used master page. The Application is working fine but i got the following error in HTML Source Page. ...
18
by: Brett | last post by:
I have an ASP.NET page that displays work orders in a GridView. In that GridView is a checkbox column. When the user clicks a "Print" button, I create a report, using the .NET Framework printing...
12
by: =?Utf-8?B?ZGdvdw==?= | last post by:
I designed a "contact_us" page in visual web developer 2005 express along with EW2 after viewing tutorials on asp.net's help page. Features work like they should, but I cannot figure out how to...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.