Mike
|
| Posted: 06/18/2002, 1:53 PM |
|
I get this error when I run my .net forms.
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 'NewProject5.Login.Login'.
Source Error:
Line 1: <!--ASPX page @1-EC4C005C-->
Line 2: <%@ Page language="c#" Codebehind="Login.aspx.cs" AutoEventWireup="false" Inherits="NewProject5.Login.Login" %>
Line 3: <%@ Import namespace="NewProject5.Login" %>
Line 4: <%@ Import namespace="NewProject5.Configuration" %>
Source File: C:\Inetpub\wwwroot\NewProject5\login.aspx Line: 2
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.0.3705.209; ASP.NET Version:1.0.3705.272
|
|
|
 |
SN
|
| Posted: 06/18/2002, 10:53 PM |
|
This is because you have not compiled your code !
Go to the directory where the code was gebnerated and run the makeall.bat file. This file will compile the code .... then your application should run fine !
|
|
|
 |
JP
|
| Posted: 10/10/2002, 1:16 AM |
|
I have the same error also. What should I do? I have already double-clicked on the makeall file in the same directory.
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 'TaskMan.Login.Login'.
Source Error:
Line 1: <!--ASPX page @1-8F51DE80-->
Line 2: <%@ Page language="vb" Codebehind="Login.aspx.vb" AutoEventWireup="false" Inherits="TaskMan.Login.Login" %>
Line 3: <%@ Import namespace="TaskMan.Login" %>
Line 4: <%@ Import namespace="TaskMan.Configuration" %>
Source File: c:\inetpub\wwwroot\TaskMan\Login.aspx Line: 2
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.0.3705.0; ASP.NET Version:1.0.3705.0
|
|
|
 |
Timothy
|
| Posted: 10/11/2002, 5:29 AM |
|
Hello,
please refer to C# deployment Guide: http://support.codecharge.com/kb_article.asp?article_id=29
Looks like you haven't created virtual directory on the server.
|
|
|
 |