Click here to Skip to main content
15,913,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
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 'EDAIF.Disbursment.Ntranche'.

Source Error:


Line 1:  <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Ntranche.aspx.cs" Inherits="EDAIF.Disbursment.Ntranche" %>
Line 2:  <asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
Line 3:  </asp:Content>

Source File: /Disbursment/Ntranche.aspx    Line: 1

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1008



Where is the error?

Please assist

Thanks
Posted

Error is pretty clear & self-explanatory:
Could not load type 'EDAIF.Disbursment.Ntranche'.

Meaning you're missing references for EDAIF.Disbursment.Ntranche. And if you already have given the reference, try to clean the solution & rebuild it.

-KR
 
Share this answer
 
Comments
Member 10744248 6-Oct-15 2:37am    
Not Clear please be direct further

Thanks
C#
Check that the codebehind class is

public partial class Ntranche : Page
{

}

Change this to
C#
public partial class EDAIF.Disbursment.Ntranche : Page
{

}


Since you are saying that the project does not contain the project file or solution file, I think the problem is here. The IIS is not able to understand the project type.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900