WHy do i get this error message?

  • Thread starter Thread starter Sara
  • Start date Start date
S

Sara

Parser Error Message: Could not load type 'MyIp.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="MyIp.Global"
%>



Any ideas?
I really need some help on this one.
 
If you look at your project properties, solution explorer>web
project>context menu->properties...
Your root namespace should be MyIP.. is it..?
If it is not change your Inherits attribute to whatever is specified in the
root namespace property...
I've noticed this happening when I've renamed my project..
Also make sure the class defined in Global.asax.vb is named [Global]
 
Thanks!!!

I finally got it working...

alien2_51 said:
If you look at your project properties, solution explorer>web
project>context menu->properties...
Your root namespace should be MyIP.. is it..?
If it is not change your Inherits attribute to whatever is specified in the
root namespace property...
I've noticed this happening when I've renamed my project..
Also make sure the class defined in Global.asax.vb is named [Global]

Sara said:
Parser Error Message: Could not load type 'MyIp.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="MyIp.Global"
%>



Any ideas?
I really need some help on this one.
 
Back
Top