Parser Error - pls help

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

If I run my ASP.NET solution locally it runs perfectly. I uploaded it to my
website and I keep getting this error on load..

Any ideas? Thanks.

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

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

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

Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="MyWeb.Global"
%>

Source File: c:\hosting\webhost4life\member\xxxx\MyWeb\global.asax Line:
1
 
VB said:
If I run my ASP.NET solution locally it runs perfectly. I uploaded it to my
website and I keep getting this error on load..

Any ideas? Thanks.

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

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

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

Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="MyWeb.Global"
%>

Source File: c:\hosting\webhost4life\member\xxxx\MyWeb\global.asax Line:
1

Did you copy the bin/.dll file up there as well? It can't find the
compiled version of global.asax.vb
 
Wierd. I recompiled and copied up the new DLL and the ASPX file up there it
was fine.
:) Thanks
 
Back
Top