473,396 Members | 1,766 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Parse Error

I am working on a Web application and when I try to add a Web Form with zero
code on it and just type hello world I get the following:

1. The Virtual Web is setup as an application
2. All other pages work fine, just when I add new pages?
3. Rebooted, resetiis, and I searched the Web over for a resolution.

I am at loss. Any help would be great.

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 'Rjrt.QuipSap.WebUi.TestForm'.

Source Error:
Line 1: <%@ Page Language="vb" AutoEventWireup="false"
Codebehind="TestForm.aspx.vb" Inherits="Rjrt.QuipSap.WebUi.TestForm"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\Rjrt.QuipSap.WebUi\TestForm.asp x Line: 1

May 8 '06 #1
5 1612
Your @Page directive is telling the JIT compiler that your page inherits
from Rjrt.QuipSap.WebUi.TestForm

ASP.NET is assuming to find that type in a dll of the bin folder. If you
don't have any codebehind and you aren't deploying any assemblies in your
bin folder, remote the Inherit=".." attribute from the @Page and try again.

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:7F**********************************@microsof t.com...
I am working on a Web application and when I try to add a Web Form with
zero
code on it and just type hello world I get the following:

1. The Virtual Web is setup as an application
2. All other pages work fine, just when I add new pages?
3. Rebooted, resetiis, and I searched the Web over for a resolution.

I am at loss. Any help would be great.

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 'Rjrt.QuipSap.WebUi.TestForm'.

Source Error:
Line 1: <%@ Page Language="vb" AutoEventWireup="false"
Codebehind="TestForm.aspx.vb" Inherits="Rjrt.QuipSap.WebUi.TestForm"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\Rjrt.QuipSap.WebUi\TestForm.asp x Line:
1

May 8 '06 #2
Karl thanks for the response.

All I am simply doing is adding a new VB.NET Web form to the project as I
always do. Not touching the @Page directive at all. The wierd part is that
when I delete the inherits part of the directive and build the page works
fine. Then when I drag and drop a Server Contol (Label) VS.NET adds the same
exact thing that I deleted from the page directive of

Inherits="Rjrt.QuipSap.WebUi.TestForm"

I am really perplexed at this. All other apps work fine, but this one is
under Visual Source Safe and I am working as a team and wondering if that
might be the issue.

"Karl Seguin [MVP]" wrote:
Your @Page directive is telling the JIT compiler that your page inherits
from Rjrt.QuipSap.WebUi.TestForm

ASP.NET is assuming to find that type in a dll of the bin folder. If you
don't have any codebehind and you aren't deploying any assemblies in your
bin folder, remote the Inherit=".." attribute from the @Page and try again.

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:7F**********************************@microsof t.com...
I am working on a Web application and when I try to add a Web Form with
zero
code on it and just type hello world I get the following:

1. The Virtual Web is setup as an application
2. All other pages work fine, just when I add new pages?
3. Rebooted, resetiis, and I searched the Web over for a resolution.

I am at loss. Any help would be great.

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 'Rjrt.QuipSap.WebUi.TestForm'.

Source Error:
Line 1: <%@ Page Language="vb" AutoEventWireup="false"
Codebehind="TestForm.aspx.vb" Inherits="Rjrt.QuipSap.WebUi.TestForm"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\Rjrt.QuipSap.WebUi\TestForm.asp x Line:
1


May 10 '06 #3
I wouldn't think it would be a problem. To be honest, I can't think what the
problem might be. The simplest work around might be to simply have an empy
codebehind file of type Rjrt.QuipSap.WebUi.TestForm and deploy the assembly
to the bin...

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:01**********************************@microsof t.com...
Karl thanks for the response.

All I am simply doing is adding a new VB.NET Web form to the project as I
always do. Not touching the @Page directive at all. The wierd part is
that
when I delete the inherits part of the directive and build the page works
fine. Then when I drag and drop a Server Contol (Label) VS.NET adds the
same
exact thing that I deleted from the page directive of

Inherits="Rjrt.QuipSap.WebUi.TestForm"

I am really perplexed at this. All other apps work fine, but this one is
under Visual Source Safe and I am working as a team and wondering if that
might be the issue.

"Karl Seguin [MVP]" wrote:
Your @Page directive is telling the JIT compiler that your page inherits
from Rjrt.QuipSap.WebUi.TestForm

ASP.NET is assuming to find that type in a dll of the bin folder. If you
don't have any codebehind and you aren't deploying any assemblies in your
bin folder, remote the Inherit=".." attribute from the @Page and try
again.

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:7F**********************************@microsof t.com...
>I am working on a Web application and when I try to add a Web Form with
>zero
> code on it and just type hello world I get the following:
>
> 1. The Virtual Web is setup as an application
> 2. All other pages work fine, just when I add new pages?
> 3. Rebooted, resetiis, and I searched the Web over for a resolution.
>
> I am at loss. Any help would be great.
>
> 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
> 'Rjrt.QuipSap.WebUi.TestForm'.
>
> Source Error:
>
>
> Line 1: <%@ Page Language="vb" AutoEventWireup="false"
> Codebehind="TestForm.aspx.vb" Inherits="Rjrt.QuipSap.WebUi.TestForm"%>
> Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> Line 3: <HTML>
>
>
> Source File: c:\inetpub\wwwroot\Rjrt.QuipSap.WebUi\TestForm.asp x
> Line:
> 1
>
>
>


May 10 '06 #4
Maybe it is Gremlins in the ASP.NET Application I am writting. Anyway thanks
for the Help.

I do have another question?

When developing ASP.NET 1.1 or 2.0 using Visual Source Safe I have found
that each developer should have the same exact setup on their machines. Is
this a true statement?

"Karl Seguin [MVP]" wrote:
I wouldn't think it would be a problem. To be honest, I can't think what the
problem might be. The simplest work around might be to simply have an empy
codebehind file of type Rjrt.QuipSap.WebUi.TestForm and deploy the assembly
to the bin...

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:01**********************************@microsof t.com...
Karl thanks for the response.

All I am simply doing is adding a new VB.NET Web form to the project as I
always do. Not touching the @Page directive at all. The wierd part is
that
when I delete the inherits part of the directive and build the page works
fine. Then when I drag and drop a Server Contol (Label) VS.NET adds the
same
exact thing that I deleted from the page directive of

Inherits="Rjrt.QuipSap.WebUi.TestForm"

I am really perplexed at this. All other apps work fine, but this one is
under Visual Source Safe and I am working as a team and wondering if that
might be the issue.

"Karl Seguin [MVP]" wrote:
Your @Page directive is telling the JIT compiler that your page inherits
from Rjrt.QuipSap.WebUi.TestForm

ASP.NET is assuming to find that type in a dll of the bin folder. If you
don't have any codebehind and you aren't deploying any assemblies in your
bin folder, remote the Inherit=".." attribute from the @Page and try
again.

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:7F**********************************@microsof t.com...
>I am working on a Web application and when I try to add a Web Form with
>zero
> code on it and just type hello world I get the following:
>
> 1. The Virtual Web is setup as an application
> 2. All other pages work fine, just when I add new pages?
> 3. Rebooted, resetiis, and I searched the Web over for a resolution.
>
> I am at loss. Any help would be great.
>
> 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
> 'Rjrt.QuipSap.WebUi.TestForm'.
>
> Source Error:
>
>
> Line 1: <%@ Page Language="vb" AutoEventWireup="false"
> Codebehind="TestForm.aspx.vb" Inherits="Rjrt.QuipSap.WebUi.TestForm"%>
> Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> Line 3: <HTML>
>
>
> Source File: c:\inetpub\wwwroot\Rjrt.QuipSap.WebUi\TestForm.asp x
> Line:
> 1
>
>
>


May 10 '06 #5
More info...

Namespace Caps are different on some files to others.

"Karl Seguin [MVP]" wrote:
I wouldn't think it would be a problem. To be honest, I can't think what the
problem might be. The simplest work around might be to simply have an empy
codebehind file of type Rjrt.QuipSap.WebUi.TestForm and deploy the assembly
to the bin...

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:01**********************************@microsof t.com...
Karl thanks for the response.

All I am simply doing is adding a new VB.NET Web form to the project as I
always do. Not touching the @Page directive at all. The wierd part is
that
when I delete the inherits part of the directive and build the page works
fine. Then when I drag and drop a Server Contol (Label) VS.NET adds the
same
exact thing that I deleted from the page directive of

Inherits="Rjrt.QuipSap.WebUi.TestForm"

I am really perplexed at this. All other apps work fine, but this one is
under Visual Source Safe and I am working as a team and wondering if that
might be the issue.

"Karl Seguin [MVP]" wrote:
Your @Page directive is telling the JIT compiler that your page inherits
from Rjrt.QuipSap.WebUi.TestForm

ASP.NET is assuming to find that type in a dll of the bin folder. If you
don't have any codebehind and you aren't deploying any assemblies in your
bin folder, remote the Inherit=".." attribute from the @Page and try
again.

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Moojjoo" <Mo*****@discussions.microsoft.com> wrote in message
news:7F**********************************@microsof t.com...
>I am working on a Web application and when I try to add a Web Form with
>zero
> code on it and just type hello world I get the following:
>
> 1. The Virtual Web is setup as an application
> 2. All other pages work fine, just when I add new pages?
> 3. Rebooted, resetiis, and I searched the Web over for a resolution.
>
> I am at loss. Any help would be great.
>
> 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
> 'Rjrt.QuipSap.WebUi.TestForm'.
>
> Source Error:
>
>
> Line 1: <%@ Page Language="vb" AutoEventWireup="false"
> Codebehind="TestForm.aspx.vb" Inherits="Rjrt.QuipSap.WebUi.TestForm"%>
> Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> Line 3: <HTML>
>
>
> Source File: c:\inetpub\wwwroot\Rjrt.QuipSap.WebUi\TestForm.asp x
> Line:
> 1
>
>
>


May 10 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Steven | last post by:
I got a "Parse error: parse error in ..." in this line: if(empty($_POST){ ..... But if I fist assign $ssn=$_POST; and then if(empty($ssn){ ... it is working. Any advice? Thanks in advance.
1
by: H.L Bai | last post by:
hi, everybody i meet a parse error when i used the xml4c. any proposal is helpful. The error is following .../XMLRegionHandler.h:59 parse error before '*' .../XMLRegionHandler.h:60 parse...
2
by: Vittal | last post by:
Hello All, I am trying to compile my application on Red Hat Linux 8 against gcc 3.2.2. Very first file in application is failing to compile. I tried compiling my application on Linux 7.2...
21
by: BWIGLEY | last post by:
Basically I've just started making a game. So far it makes an array 25 by 20 and tries to make five rooms within it. In scr_make_room() there's parse errors: 20 C:\c\Rooms\Untitled1.c parse error...
6
by: trevor | last post by:
Incorrect values when using float.Parse(string) I have discovered a problem with float.Parse(string) not getting values exactly correct in some circumstances(CSV file source) but in very similar...
5
AdrianH
by: AdrianH | last post by:
Assumptions I am assuming that you know or are capable of looking up the functions I am to describe here and have some remedial understanding of C++ programming. FYI Although I have called...
1
AdrianH
by: AdrianH | last post by:
Assumptions I am assuming that you know or are capable of looking up the functions I am to describe here and have some remedial understanding of C programming. FYI Although I have called this...
1
by: Phaelle | last post by:
Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' What does that error mean? I can´t find the mistake!! In another script, I have got another kind of mistake : parse...
2
by: Lawrence Krubner | last post by:
Imagine a template system that works by getting a file, as a string, and then putting it through eval(), something like this: $formAsString = $controller->command("readFileAndReturnString",...
5
by: goldtech | last post by:
SAX XML Parse Python error message Hi, My first attempt at SAX, but have an error message I need help with. I cite the error message, code, and xml below. Be grateful if anyone can tell me...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.