Results 1 to 2 of 2

Thread: <<Paser Error >> what's mean that ???

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2002
    Posts
    40

    <<Paser Error >> what's mean that ???

    Can anybody explain to me what's mean this error :


    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 'xyz.Employees_maint.Employees_maintPage'.

    Source Error:


    Line 1: <!--ASPX page @1-7AE7C4B5-->
    Line 2: <%@ Page language="vb" Codebehind="Employees_maint.aspx.vb" AutoEventWireup="false" Inherits="xyz.Employees_maint.Employees_maintPage" %>
    Line 3: <%@ Import namespace="xyz.Employees_maint" %>
    Line 4: <%@ Import namespace="xyz.Configuration" %>


    Source File: e:\inetpub\wwwroot\xyz\Employees_maint.aspx Line: 2


    --------------------------------------------------------------------------------
    Version Information: Microsoft .NET Framework Version:1.0.3705.0; ASP.NET Version:1.0.3705.0


    ----
    remember i work with CODE CHARGE and it generate code that give me this Error

  2. #2
    Hyperactive Member
    Join Date
    Aug 2002
    Location
    Fort Collins, CO
    Posts
    366
    Maybe check your namespaces and classes. Judging from the following
    Source File: e:\inetpub\wwwroot\xyz\Employees_maint.aspx Line: 2
    it looks like maybe this
    VB Code:
    1. <%@ Page language="vb" Codebehind="Employees_maint.aspx.vb" AutoEventWireup="false" Inherits="xyz.Employees_maint.Employees_maintPage" %>
    should be
    VB Code:
    1. <%@ Page language="vb" Codebehind="Employees_maint.aspx.vb" AutoEventWireup="false" Inherits="xyz.Employees_maint" %>
    Check and see if you actually have a code behind class located at xyz.Employees_maint.Employees_maintPage.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width