473,385 Members | 1,615 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Could not load type 'Global'.

When I was using VS2003, I was able to compile my asp.net project locally on
my machine and copy it to the production server and it would run just fine.

I've now converted to VS2005. The project compiles & runs fine locally, but
when I copy to the production machine, I get this error:

Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I thought perhaps I could change the Root Namespace to "WiseERP" (it was
blank), but then I can't get the project to compile. In the
aspx.designer.vb file It doesn't like Protected WithEvents HelpMain As
Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would like
to avoid having to change each one...just to find out this really isn't my
problems.

Thanks for your help!
Mar 19 '07 #1
8 18163
You did mark the directory WiseERP as an application correct? If not, then
the global.asax is looking for a dll in the wrong bin file. It will be
looking for D:\inetpub\wwwroot\bin instead of the bin directory in the
WiseERP since the wwwroot is the next application up in the heirarchy.

Something else to keep in mind, if you use the Web Site project, it's not
the same as the VS 2003 web project. The Web Site project does all
compilation dynamically, which can lead to pages being compiled before
others. The Web Application Project, which was available as an add-on to VS
2005 and is now part of VS 2005 SP 1, is more akin to the VS 2003 web
project in that it compiles everything into a single dll. That could also
avoid the error you are seeing if it's a matter of timing for the
compilation.
--
Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006

"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl...
When I was using VS2003, I was able to compile my asp.net project locally
on my machine and copy it to the production server and it would run just
fine.

I've now converted to VS2005. The project compiles & runs fine locally,
but when I copy to the production machine, I get this error:

Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I thought perhaps I could change the Root Namespace to "WiseERP" (it was
blank), but then I can't get the project to compile. In the
aspx.designer.vb file It doesn't like Protected WithEvents HelpMain As
Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would
like to avoid having to change each one...just to find out this really
isn't my problems.

Thanks for your help!

Mar 19 '07 #2
Sorry about my stupidity on this...

I'm assuming you're talking about the Home Directory of the IIS admin. I
hit the Remove and Create button to set this. currently the settings are:
Local Path: D:\inetpub\wwwroot\wiseerp
Application name: Default Application
Starting point: <WiseERP>
Execute permissions Scripts only
application pool: DefaultAppPool

Also I have SP1 installed and have already "Convert to Web Application" in
VS.

"Mark Fitzpatrick" <ma******@fitzme.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
You did mark the directory WiseERP as an application correct? If not, then
the global.asax is looking for a dll in the wrong bin file. It will be
looking for D:\inetpub\wwwroot\bin instead of the bin directory in the
WiseERP since the wwwroot is the next application up in the heirarchy.

Something else to keep in mind, if you use the Web Site project, it's not
the same as the VS 2003 web project. The Web Site project does all
compilation dynamically, which can lead to pages being compiled before
others. The Web Application Project, which was available as an add-on to
VS 2005 and is now part of VS 2005 SP 1, is more akin to the VS 2003 web
project in that it compiles everything into a single dll. That could also
avoid the error you are seeing if it's a matter of timing for the
compilation.
--
Hope this helps,
Mark Fitzpatrick
Former Microsoft FrontPage MVP 199?-2006

"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl...
>When I was using VS2003, I was able to compile my asp.net project locally
on my machine and copy it to the production server and it would run just
fine.

I've now converted to VS2005. The project compiles & runs fine locally,
but when I copy to the production machine, I get this error:

Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I thought perhaps I could change the Root Namespace to "WiseERP" (it was
blank), but then I can't get the project to compile. In the
aspx.designer.vb file It doesn't like Protected WithEvents HelpMain As
Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would
like to avoid having to change each one...just to find out this really
isn't my problems.

Thanks for your help!


Mar 19 '07 #3
re:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1
VS2005, when WAP isn't installed, doesn't use "codebehind".

In ASP.NET version 2.0, you should instead use the CodeFile attribute
to specify the name of the source file, along with the Inherits attribute
to specify the fully qualified name of the class.

See:
http://msdn.microsoft.com/msdnmag/is...&fig=true#fig1

....for usage examples.

Also, in ASP.NET 2.0, if you use the code-behind model,
global.asax.vb must be moved to the App_Code directory.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl...
When I was using VS2003, I was able to compile my asp.net project locally on my machine and copy
it to the production server and it would run just fine.

I've now converted to VS2005. The project compiles & runs fine locally, but when I copy to the
production machine, I get this error:

Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I thought perhaps I could change the Root Namespace to "WiseERP" (it was blank), but then I can't
get the project to compile. In the aspx.designer.vb file It doesn't like Protected WithEvents
HelpMain As Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would like to avoid having to
change each one...just to find out this really isn't my problems.

Thanks for your help!

Mar 19 '07 #4
I thought the App_Code directory was for projects that were created in
2005...this is a conversion form 2003. ??

also, I changed the codebehind to CodeFile, I get this error:

Compiler Error Message: BC30554: 'Global' is ambiguous.
Source Error:
Line 44:
<System.Runtime.CompilerServices.CompilerGlobalSco peAttribute() _
Line 45: Public Class global_asax
Line 46: Inherits Global.[Global]
Line 47:
Line 48: Private Shared __initialized As Boolean
Source File: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET
Files\root\5de7b2a1\c4da5030\App_global.asax.vydat jj_.0.vb Line: 46
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
re:
>Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

VS2005, when WAP isn't installed, doesn't use "codebehind".

In ASP.NET version 2.0, you should instead use the CodeFile attribute
to specify the name of the source file, along with the Inherits attribute
to specify the fully qualified name of the class.

See:
http://msdn.microsoft.com/msdnmag/is...&fig=true#fig1

...for usage examples.

Also, in ASP.NET 2.0, if you use the code-behind model,
global.asax.vb must be moved to the App_Code directory.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl...
>When I was using VS2003, I was able to compile my asp.net project locally
on my machine and copy it to the production server and it would run just
fine.

I've now converted to VS2005. The project compiles & runs fine locally,
but when I copy to the production machine, I get this error:

Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I thought perhaps I could change the Root Namespace to "WiseERP" (it was
blank), but then I can't get the project to compile. In the
aspx.designer.vb file It doesn't like Protected WithEvents HelpMain As
Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would
like to avoid having to change each one...just to find out this really
isn't my problems.

Thanks for your help!


Mar 19 '07 #5
re:
>I thought the App_Code directory was for projects that were created in 2005...this is a conversion
from 2003. ??
....which makes it a VS 2005 project, whether it was
originally created in 2005 or converted from 2003.

re:
also, I changed the codebehind to CodeFile, I get this error:
Compiler Error Message: BC30554: 'Global' is ambiguous.
You have a different "global" class defined somewhere else in your codebase.

In the new model, the Inherits attribute specifies
the fully qualified name of the class defined in global.asax.

Is that name, still, "global", or should it be something else ?
I bet it's something else.

Did you move global.asax.vb to the App_Code directory ?

Here's an idea for you : backup your current global.asax and its codebehind file,
delete them, and create a new global.asax: "File", "New", "File" ( or Control-N ) ,
and select "Global Application Class".

A global.asax template will be created...which you can modify to taste.

That new template's syntax will be correct,
and you'll only need to add the contents of your current global.asax file.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:OK**************@TK2MSFTNGP02.phx.gbl...
>I thought the App_Code directory was for projects that were created in 2005...this is a conversion
form 2003. ??

also, I changed the codebehind to CodeFile, I get this error:

Compiler Error Message: BC30554: 'Global' is ambiguous.
Source Error:
Line 44: <System.Runtime.CompilerServices.CompilerGlobalSco peAttribute() _
Line 45: Public Class global_asax
Line 46: Inherits Global.[Global]
Line 47:
Line 48: Private Shared __initialized As Boolean
Source File: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET
Files\root\5de7b2a1\c4da5030\App_global.asax.vydat jj_.0.vb Line: 46
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
>re:
>>Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

VS2005, when WAP isn't installed, doesn't use "codebehind".

In ASP.NET version 2.0, you should instead use the CodeFile attribute
to specify the name of the source file, along with the Inherits attribute
to specify the fully qualified name of the class.

See:
http://msdn.microsoft.com/msdnmag/is...&fig=true#fig1

...for usage examples.

Also, in ASP.NET 2.0, if you use the code-behind model,
global.asax.vb must be moved to the App_Code directory.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl...
>>When I was using VS2003, I was able to compile my asp.net project locally on my machine and copy
it to the production server and it would run just fine.

I've now converted to VS2005. The project compiles & runs fine locally, but when I copy to the
production machine, I get this error:

Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I thought perhaps I could change the Root Namespace to "WiseERP" (it was blank), but then I
can't get the project to compile. In the aspx.designer.vb file It doesn't like Protected
WithEvents HelpMain As Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would like to avoid having to
change each one...just to find out this really isn't my problems.

Thanks for your help!



Mar 19 '07 #6
On my dev computer, I deleted the old global.asax file, created the App_Code
folder, and created a new global.asax file in the App_Code folder. The
compile works, but the application variables defined in it don't load, so I
can't run the app still

I also tried to just create the global.asax file in the root with the same
original problem (except there is now a period in front of Global):

Parser Error Message: Could not load type '.Global_asax'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits=".Global_asax"
Language="vb" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I'm afraid I'm going to have to cough up the $250 and call microsoft....I
have to get this project running again. Any other suggestions?
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
re:
>>I thought the App_Code directory was for projects that were created in
2005...this is a conversion from 2003. ??

...which makes it a VS 2005 project, whether it was
originally created in 2005 or converted from 2003.

re:
>also, I changed the codebehind to CodeFile, I get this error:
Compiler Error Message: BC30554: 'Global' is ambiguous.

You have a different "global" class defined somewhere else in your
codebase.

In the new model, the Inherits attribute specifies
the fully qualified name of the class defined in global.asax.

Is that name, still, "global", or should it be something else ?
I bet it's something else.

Did you move global.asax.vb to the App_Code directory ?

Here's an idea for you : backup your current global.asax and its
codebehind file,
delete them, and create a new global.asax: "File", "New", "File" ( or
Control-N ) ,
and select "Global Application Class".

A global.asax template will be created...which you can modify to taste.

That new template's syntax will be correct,
and you'll only need to add the contents of your current global.asax file.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:OK**************@TK2MSFTNGP02.phx.gbl...
>>I thought the App_Code directory was for projects that were created in
2005...this is a conversion form 2003. ??

also, I changed the codebehind to CodeFile, I get this error:

Compiler Error Message: BC30554: 'Global' is ambiguous.
Source Error:
Line 44: <System.Runtime.CompilerServices.CompilerGlobalSco peAttribute()>
_
Line 45: Public Class global_asax
Line 46: Inherits Global.[Global]
Line 47:
Line 48: Private Shared __initialized As Boolean
Source File: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary
ASP.NET Files\root\5de7b2a1\c4da5030\App_global.asax.vydat jj_.0.vb
Line: 46

>"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl...
>>re:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global"
%>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

VS2005, when WAP isn't installed, doesn't use "codebehind".

In ASP.NET version 2.0, you should instead use the CodeFile attribute
to specify the name of the source file, along with the Inherits
attribute
to specify the fully qualified name of the class.

See:
http://msdn.microsoft.com/msdnmag/is...&fig=true#fig1

...for usage examples.

Also, in ASP.NET 2.0, if you use the code-behind model,
global.asax.vb must be moved to the App_Code directory.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl...
When I was using VS2003, I was able to compile my asp.net project
locally on my machine and copy it to the production server and it would
run just fine.

I've now converted to VS2005. The project compiles & runs fine
locally, but when I copy to the production machine, I get this error:

Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global"
%>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I thought perhaps I could change the Root Namespace to "WiseERP" (it
was blank), but then I can't get the project to compile. In the
aspx.designer.vb file It doesn't like Protected WithEvents HelpMain
As Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would
like to avoid having to change each one...just to find out this really
isn't my problems.

Thanks for your help!



Mar 19 '07 #7
re:
I also tried to just create the global.asax file in the root with the same original problem
(except there is now a period in front of Global):
Did you delete the global.asax in the App_Code directory first ?

re:
I deleted the old global.asax file, created the App_Code folder, and created a new global.asax
file in the App_Code folder.
Only the code-behind file for global.asax ( global.asax.vb )
needs to go into the App_Code folder.

Global.asax itself goes in the root of your application, as usual.

Most developers have switched from a code-behind global.asax
to an inline-code global.asax, to prevent the problems you're having.

There's nothing you can do in code-behind which you can't do inline.
In fact, the *default* model for VS 2005 is now "inline", instead of "codebehind".

Would you try that ?
( getting rid of the codebehind file and writing your global.asax events inline... )


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eq*************@TK2MSFTNGP06.phx.gbl...
On my dev computer, I deleted the old global.asax file, created the App_Code folder, and created a
new global.asax file in the App_Code folder. The compile works, but the application variables
defined in it don't load, so I can't run the app still

I also tried to just create the global.asax file in the root with the same original problem
(except there is now a period in front of Global):

Parser Error Message: Could not load type '.Global_asax'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits=".Global_asax" Language="vb" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I'm afraid I'm going to have to cough up the $250 and call microsoft....I have to get this project
running again. Any other suggestions?
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>re:
>>>I thought the App_Code directory was for projects that were created in 2005...this is a
conversion from 2003. ??

...which makes it a VS 2005 project, whether it was
originally created in 2005 or converted from 2003.

re:
>>also, I changed the codebehind to CodeFile, I get this error:
Compiler Error Message: BC30554: 'Global' is ambiguous.

You have a different "global" class defined somewhere else in your codebase.

In the new model, the Inherits attribute specifies
the fully qualified name of the class defined in global.asax.

Is that name, still, "global", or should it be something else ?
I bet it's something else.

Did you move global.asax.vb to the App_Code directory ?

Here's an idea for you : backup your current global.asax and its codebehind file,
delete them, and create a new global.asax: "File", "New", "File" ( or Control-N ) ,
and select "Global Application Class".

A global.asax template will be created...which you can modify to taste.

That new template's syntax will be correct,
and you'll only need to add the contents of your current global.asax file.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:OK**************@TK2MSFTNGP02.phx.gbl...
>>>I thought the App_Code directory was for projects that were created in 2005...this is a
conversion form 2003. ??

also, I changed the codebehind to CodeFile, I get this error:

Compiler Error Message: BC30554: 'Global' is ambiguous.
Source Error:
Line 44: <System.Runtime.CompilerServices.CompilerGlobalSco peAttribute()_
Line 45: Public Class global_asax
Line 46: Inherits Global.[Global]
Line 47:
Line 48: Private Shared __initialized As Boolean
Source File: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET
Files\root\5de7b2a1\c4da5030\App_global.asax.vyd atjj_.0.vb Line: 46

>>"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl.. .
re:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

VS2005, when WAP isn't installed, doesn't use "codebehind".

In ASP.NET version 2.0, you should instead use the CodeFile attribute
to specify the name of the source file, along with the Inherits attribute
to specify the fully qualified name of the class.

See:
http://msdn.microsoft.com/msdnmag/is...&fig=true#fig1

...for usage examples.

Also, in ASP.NET 2.0, if you use the code-behind model,
global.asax.vb must be moved to the App_Code directory.

Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl...
When I was using VS2003, I was able to compile my asp.net project locally on my machine and
copy it to the production server and it would run just fine.
>
I've now converted to VS2005. The project compiles & runs fine locally, but when I copy to
the production machine, I get this error:
>
Parser Error Message: Could not load type 'Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="Global" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1
>
I thought perhaps I could change the Root Namespace to "WiseERP" (it was blank), but then I
can't get the project to compile. In the aspx.designer.vb file It doesn't like Protected
WithEvents HelpMain As Global.Help I thinks it should be Protected WithEvents HelpMain As
Global.WiseERP.Help. I have about 500 pages on this site...and would like to avoid having to
change each one...just to find out this really isn't my problems.
>
Thanks for your help!
>




Mar 19 '07 #8
Well, I finally found the problem.....embarrased to post it, but it may help
someone else someday.

It help to set the web site to .net 2.0..... not 1.1.
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
re:
>I also tried to just create the global.asax file in the root with the
same original problem (except there is now a period in front of Global):

Did you delete the global.asax in the App_Code directory first ?

re:
>I deleted the old global.asax file, created the App_Code folder, and
created a new global.asax file in the App_Code folder.

Only the code-behind file for global.asax ( global.asax.vb )
needs to go into the App_Code folder.

Global.asax itself goes in the root of your application, as usual.

Most developers have switched from a code-behind global.asax
to an inline-code global.asax, to prevent the problems you're having.

There's nothing you can do in code-behind which you can't do inline.
In fact, the *default* model for VS 2005 is now "inline", instead of
"codebehind".

Would you try that ?
( getting rid of the codebehind file and writing your global.asax events
inline... )


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eq*************@TK2MSFTNGP06.phx.gbl...
>On my dev computer, I deleted the old global.asax file, created the
App_Code folder, and created a new global.asax file in the App_Code
folder. The compile works, but the application variables defined in it
don't load, so I can't run the app still

I also tried to just create the global.asax file in the root with the
same original problem (except there is now a period in front of Global):

Parser Error Message: Could not load type '.Global_asax'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits=".Global_asax" Language="vb" %>
Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1

I'm afraid I'm going to have to cough up the $250 and call microsoft....I
have to get this project running again. Any other suggestions?
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
>>re:
I thought the App_Code directory was for projects that were created in
2005...this is a conversion from 2003. ??

...which makes it a VS 2005 project, whether it was
originally created in 2005 or converted from 2003.

re:
also, I changed the codebehind to CodeFile, I get this error:
Compiler Error Message: BC30554: 'Global' is ambiguous.

You have a different "global" class defined somewhere else in your
codebase.

In the new model, the Inherits attribute specifies
the fully qualified name of the class defined in global.asax.

Is that name, still, "global", or should it be something else ?
I bet it's something else.

Did you move global.asax.vb to the App_Code directory ?

Here's an idea for you : backup your current global.asax and its
codebehind file,
delete them, and create a new global.asax: "File", "New", "File" ( or
Control-N ) ,
and select "Global Application Class".

A global.asax template will be created...which you can modify to taste.

That new template's syntax will be correct,
and you'll only need to add the contents of your current global.asax
file.


Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:OK**************@TK2MSFTNGP02.phx.gbl...
I thought the App_Code directory was for projects that were created in
2005...this is a conversion form 2003. ??

also, I changed the codebehind to CodeFile, I get this error:

Compiler Error Message: BC30554: 'Global' is ambiguous.
Source Error:
Line 44:
<System.Runtime.CompilerServices.CompilerGlobal ScopeAttribute()_
Line 45: Public Class global_asax
Line 46: Inherits Global.[Global]
Line 47:
Line 48: Private Shared __initialized As Boolean
Source File: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary
ASP.NET Files\root\5de7b2a1\c4da5030\App_global.asax.vydat jj_.0.vb
Line: 46
"Juan T. Llibre" <no***********@nowhere.comwrote in message
news:%2****************@TK2MSFTNGP05.phx.gbl. ..
re:
>Line 1: <%@ Application Codebehind="Global.asax.vb"
>Inherits="Global" %>
>Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1
>
VS2005, when WAP isn't installed, doesn't use "codebehind".
>
In ASP.NET version 2.0, you should instead use the CodeFile attribute
to specify the name of the source file, along with the Inherits
attribute
to specify the fully qualified name of the class.
>
See:
http://msdn.microsoft.com/msdnmag/is...&fig=true#fig1
>
...for usage examples.
>
Also, in ASP.NET 2.0, if you use the code-behind model,
global.asax.vb must be moved to the App_Code directory.
>
Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"Rob T" <RT*********@DONTwalchemSPAM.comwrote in message
news:eK**************@TK2MSFTNGP06.phx.gbl.. .
>When I was using VS2003, I was able to compile my asp.net project
>locally on my machine and copy it to the production server and it
>would run just fine.
>>
>I've now converted to VS2005. The project compiles & runs fine
>locally, but when I copy to the production machine, I get this error:
>>
>Parser Error Message: Could not load type 'Global'.
>Source Error:
>Line 1: <%@ Application Codebehind="Global.asax.vb"
>Inherits="Global" %>
>Source File: D:\Inetpub\wwwroot\WiseERP\global.asax Line: 1
>>
>I thought perhaps I could change the Root Namespace to "WiseERP" (it
>was blank), but then I can't get the project to compile. In the
>aspx.designer.vb file It doesn't like Protected WithEvents HelpMain
>As Global.Help I thinks it should be Protected WithEvents HelpMain
>As Global.WiseERP.Help. I have about 500 pages on this site...and
>would like to avoid having to change each one...just to find out this
>really isn't my problems.
>>
>Thanks for your help!
>>
>
>




Mar 19 '07 #9

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

Similar topics

1
by: Tyson Zwicker | last post by:
Hi, I'm suddenly unable to run any ASP.net applications. Last week everything worked. But now (Mondays!) I get the same error from _every_ application I've written: Parser Error ...
1
by: bob | last post by:
I have a web app that I run on my local machine. I copied it into the production server of my client and when I try to start it I get the message: could not load type global line 1 I have...
4
by: Neil Ramsbottom | last post by:
Hi, I have built an application using ASP.NET. I can compile and run this application fine on a development machine, and on another development machine. I tried to then run the same...
2
by: Daniel Bass | last post by:
Scenario (Hardware) ---------------------- I've got an engineering source server with Win 2k on it. We use it for all the source files for our projects etc... Let's call it "Engineering" for...
1
by: JD | last post by:
Hello Everyone, I am working on a asp.net application and I have encountered an error that is confusing the heck out of me, this is the structure of the website /root /root/admin If I hit...
16
by: thefritz_j | last post by:
We just converted our VS2003 1.1 VB web project (which was working fine) to VS2005 2.0 and now I get: Parser Error Message: Could not load type '<Namespace>.'. Source Error: Line 1: <%@...
8
by: Rob T | last post by:
When I was using VS2003, I was able to compile my asp.net project locally on my machine and copy it to the production server and it would run just fine. I've now converted to VS2005. The project...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

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.