|
Hi Team,
This application is in ASP.Net and C#. I have Global.asax, webconfig and aspx pages on the server with code behind logic in Bin directory as DLLs.
I made few changes in code behind on my local system and replaced the DLL on the server. I got below Parser Error error in global.asax. I havent changed anything in global.asax file.
I build the DLL from VS Command line and it complied perfectly
Please help as its urgent.
###################
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 'OnBoard.NewArrival'.
Source Error:
Line 2: <%@ language="C#" %>
Line 3:
Line 4: <object id="MyArrival" runat="server"
Line 5: class="OnBoard.NewArrival" scope="Session" />
Line 6:
Source File: /NewArrival/global.asax
###################
|