tags:

views:

86

answers:

2

I am getting an error message, and I not quite sure where the issue would be; Any ideas?

    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 'Global.Apps.Forms.NewVehicle.NewVehicleReg'.

Source Error: 


Line 1:  <%@ Page Language="C#" EnableViewState="false" AutoEventWireup="true" CodeBehind="NewVehicleReg.aspx.cs" Inherits="Global.Apps.Forms.NewVehicle.NewVehicleReg" %>
Line 2:  
Line 3:  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;


Source File: /globalprocurement/apps/Forms/NewVehicle/NewVehicleReg.aspx    Line: 1 


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.3082; ASP.NET Version:2.0.50727.3082 
+1  A: 

You may take a look at this article. It seems that ASP.NET cannot find the compiled assembly with the code behind containing the page class definition.

Darin Dimitrov
This article says it applies to asp 1.0Do you think it would still apply to framework 3.5?
user279521
it was the build;
user279521
+1  A: 

Make sure that the namespace is correct and matches the one in the code-behind file. Also ensure that the project builds correctly, it may be that the project fails to build, and your app is referencing an out of date version.

it was the build;
user279521