473,403 Members | 2,338 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,403 software developers and data experts.

Parser error

ST
Hi,
I keep getting the parser error, and I have no idea why. I've tried a
number of things including:
1)building/rebuilding about 100x
2)making sure all dll's are in the bin folder in the root of the web app
3)restarting IIS
4)recreating the virtual dir in IIS
5)playing with any and all settings I could find for the web app in IIS,
including changing permissions
6)recopying the machineconfig file from my asp v1.4... onto my local server
from the production server (just in case the file was corrupt).
7)plus random other things that I can't remember off the top of my head.

I've been working on this problem for 2 days. can someone PLEASE help me???
this is what I get if I set my webapp's login page as the start page:
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 'biopsy._default'.

Source Error:
Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx" %><%@
Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
Inherits="biopsy._default"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>

Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
**If I change the start page to just the main menu page, then when I try and
go to my search page from the main menu, I get this error:
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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\SampleSearch2.aspx Line: 1

Can ANYONE please help me??? I've run out of ideas. Thanks in advance!!!!
Nov 19 '05 #1
6 3852
What is the namespace underwhich all these pages are built under? Is it
biopsy? Can you make sure you got it right in your code behinds?

--
Kumar Reddi
http://kumarreddi.blogspot.com

"ST" <ST@discussions.microsoft.com> wrote in message
news:FB**********************************@microsof t.com...
Hi,
I keep getting the parser error, and I have no idea why. I've tried a
number of things including:
1)building/rebuilding about 100x
2)making sure all dll's are in the bin folder in the root of the web app
3)restarting IIS
4)recreating the virtual dir in IIS
5)playing with any and all settings I could find for the web app in IIS,
including changing permissions
6)recopying the machineconfig file from my asp v1.4... onto my local server from the production server (just in case the file was corrupt).
7)plus random other things that I can't remember off the top of my head.

I've been working on this problem for 2 days. can someone PLEASE help me??? this is what I get if I set my webapp's login page as the start page:
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 'biopsy._default'.

Source Error:
Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx" %><%@
Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
Inherits="biopsy._default"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>

Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
**If I change the start page to just the main menu page, then when I try and go to my search page from the main menu, I get this error:
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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\SampleSearch2.aspx Line: 1

Can ANYONE please help me??? I've run out of ideas. Thanks in

advance!!!!
Nov 19 '05 #2
ST
yup, they're all under Biopsy...I've checked that the name space is correct.
What I've done is I'm using an old version of my project, and copied the new
files into the project...so now I can get past the first error, but now I get:
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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\samplesearch2.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
I've tried including/excluding that page from the project...and get the same
result. This is what it says on top of the SampleSearch2.aspx page:

<%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<title>Untitled Document</title>
..
..
..
..

anymore ideas? Thanks!!

"Kumar Reddi" wrote:
What is the namespace underwhich all these pages are built under? Is it
biopsy? Can you make sure you got it right in your code behinds?

--
Kumar Reddi
http://kumarreddi.blogspot.com

"ST" <ST@discussions.microsoft.com> wrote in message
news:FB**********************************@microsof t.com...
Hi,
I keep getting the parser error, and I have no idea why. I've tried a
number of things including:
1)building/rebuilding about 100x
2)making sure all dll's are in the bin folder in the root of the web app
3)restarting IIS
4)recreating the virtual dir in IIS
5)playing with any and all settings I could find for the web app in IIS,
including changing permissions
6)recopying the machineconfig file from my asp v1.4... onto my local

server
from the production server (just in case the file was corrupt).
7)plus random other things that I can't remember off the top of my head.

I've been working on this problem for 2 days. can someone PLEASE help

me???
this is what I get if I set my webapp's login page as the start page:
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 'biopsy._default'.

Source Error:
Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx" %><%@
Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
Inherits="biopsy._default"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>

Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
**If I change the start page to just the main menu page, then when I try

and
go to my search page from the main menu, I get this error:
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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\SampleSearch2.aspx Line: 1

Can ANYONE please help me??? I've run out of ideas. Thanks in

advance!!!!

Nov 19 '05 #3
ST
Sorry if this gets posted twice, it gave me an error when I tried to reply.
Anyway, yeah...they're all under Biopsy. I've checked the namespaces. What
I did was bring back an old version of the project, and copy in the files I
need from the new version. Now I can get past the login page (the first
error), but still am getting this second error when I try and access the page:

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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\samplesearch2.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032
This is what is at the top of my SampleSearch2.aspx page:

<%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
Anymore ideas? I've tried including/excluding the pages from my project,
and it still results in the same error. Thanks!!
"Kumar Reddi" wrote:
What is the namespace underwhich all these pages are built under? Is it
biopsy? Can you make sure you got it right in your code behinds?

--
Kumar Reddi
http://kumarreddi.blogspot.com

"ST" <ST@discussions.microsoft.com> wrote in message
news:FB**********************************@microsof t.com...
Hi,
I keep getting the parser error, and I have no idea why. I've tried a
number of things including:
1)building/rebuilding about 100x
2)making sure all dll's are in the bin folder in the root of the web app
3)restarting IIS
4)recreating the virtual dir in IIS
5)playing with any and all settings I could find for the web app in IIS,
including changing permissions
6)recopying the machineconfig file from my asp v1.4... onto my local

server
from the production server (just in case the file was corrupt).
7)plus random other things that I can't remember off the top of my head.

I've been working on this problem for 2 days. can someone PLEASE help

me???
this is what I get if I set my webapp's login page as the start page:
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 'biopsy._default'.

Source Error:
Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx" %><%@
Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
Inherits="biopsy._default"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>

Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
**If I change the start page to just the main menu page, then when I try

and
go to my search page from the main menu, I get this error:
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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\SampleSearch2.aspx Line: 1

Can ANYONE please help me??? I've run out of ideas. Thanks in

advance!!!!

Nov 19 '05 #4
Take a look at :
http://www.dotnetjunkies.com/Tutoria...4F1105312.dcik

"The Inherits attribute MUST be used with the Src attribute."

You are not using the Src attribute.
You should be using something like :

<%@ Page Language="VB" Inherits="biopsy.SampleSearch2" Src="SampleSearch2.aspx.vb" %>

Mind you, the correct Page statement will depend on
what which source files for that Inheritance you're using.

A better alternative would be to compile your source files
into an assembly, and referencing *them*.


Juan T. Llibre
===========
"ST" <ST@discussions.microsoft.com> wrote in message
news:C8**********************************@microsof t.com...
Sorry if this gets posted twice, it gave me an error when I tried to
reply.
Anyway, yeah...they're all under Biopsy. I've checked the namespaces.
What
I did was bring back an old version of the project, and copy in the files
I
need from the new version. Now I can get past the login page (the first
error), but still am getting this second error when I try and access the
page:

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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\samplesearch2.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
Version:1.1.4322.2032
This is what is at the top of my SampleSearch2.aspx page:

<%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
Anymore ideas? I've tried including/excluding the pages from my project,
and it still results in the same error. Thanks!!
"Kumar Reddi" wrote:
What is the namespace underwhich all these pages are built under? Is it
biopsy? Can you make sure you got it right in your code behinds?

--
Kumar Reddi
http://kumarreddi.blogspot.com

"ST" <ST@discussions.microsoft.com> wrote in message
news:FB**********************************@microsof t.com...
> Hi,
> I keep getting the parser error, and I have no idea why. I've tried a
> number of things including:
> 1)building/rebuilding about 100x
> 2)making sure all dll's are in the bin folder in the root of the web
> app
> 3)restarting IIS
> 4)recreating the virtual dir in IIS
> 5)playing with any and all settings I could find for the web app in
> IIS,
> including changing permissions
> 6)recopying the machineconfig file from my asp v1.4... onto my local

server
> from the production server (just in case the file was corrupt).
> 7)plus random other things that I can't remember off the top of my
> head.
>
> I've been working on this problem for 2 days. can someone PLEASE help

me???
> this is what I get if I set my webapp's login page as the start page:
> 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 'biopsy._default'.
>
> Source Error:
>
>
> Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx"
> %><%@
> Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
> Inherits="biopsy._default"%>
> Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> Line 3: <HTML>
>
> Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
>
>
> **If I change the start page to just the main menu page, then when I
> try

and
> go to my search page from the main menu, I get this error:
> 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 'biopsy.SampleSearch2'.
>
> Source Error:
>
>
> Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
> AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
> Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
> Transitional//EN">
> Line 3: <HTML>
>
>
> Source File: c:\inetpub\wwwroot\biopsy\SampleSearch2.aspx Line: 1
>
> Can ANYONE please help me??? I've run out of ideas. Thanks in

advance!!!!

Nov 19 '05 #5
ST
yes!!! that was it!!! thank you! I've been racking my brain for 3 days
now...trying to figure this out. That article helped a LOT! If you have any
other suggestions for articles/books on learning asp...I would really
appreciate it. I'm VERY new to all this, and sort of got thrown into it
without much foundation. (I'm a biologist...turned IT at work).

"Juan T. Llibre [MVP]" wrote:
Take a look at :
http://www.dotnetjunkies.com/Tutoria...4F1105312.dcik

"The Inherits attribute MUST be used with the Src attribute."

You are not using the Src attribute.
You should be using something like :

<%@ Page Language="VB" Inherits="biopsy.SampleSearch2" Src="SampleSearch2.aspx.vb" %>

Mind you, the correct Page statement will depend on
what which source files for that Inheritance you're using.

A better alternative would be to compile your source files
into an assembly, and referencing *them*.


Juan T. Llibre
===========
"ST" <ST@discussions.microsoft.com> wrote in message
news:C8**********************************@microsof t.com...
Sorry if this gets posted twice, it gave me an error when I tried to
reply.
Anyway, yeah...they're all under Biopsy. I've checked the namespaces.
What
I did was bring back an old version of the project, and copy in the files
I
need from the new version. Now I can get past the login page (the first
error), but still am getting this second error when I try and access the
page:

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 'biopsy.SampleSearch2'.

Source Error:
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
Source File: c:\inetpub\wwwroot\biopsy\samplesearch2.aspx Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
Version:1.1.4322.2032
This is what is at the top of my SampleSearch2.aspx page:

<%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
Anymore ideas? I've tried including/excluding the pages from my project,
and it still results in the same error. Thanks!!
"Kumar Reddi" wrote:
What is the namespace underwhich all these pages are built under? Is it
biopsy? Can you make sure you got it right in your code behinds?

--
Kumar Reddi
http://kumarreddi.blogspot.com

"ST" <ST@discussions.microsoft.com> wrote in message
news:FB**********************************@microsof t.com...
> Hi,
> I keep getting the parser error, and I have no idea why. I've tried a
> number of things including:
> 1)building/rebuilding about 100x
> 2)making sure all dll's are in the bin folder in the root of the web
> app
> 3)restarting IIS
> 4)recreating the virtual dir in IIS
> 5)playing with any and all settings I could find for the web app in
> IIS,
> including changing permissions
> 6)recopying the machineconfig file from my asp v1.4... onto my local
server
> from the production server (just in case the file was corrupt).
> 7)plus random other things that I can't remember off the top of my
> head.
>
> I've been working on this problem for 2 days. can someone PLEASE help
me???
> this is what I get if I set my webapp's login page as the start page:
> 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 'biopsy._default'.
>
> Source Error:
>
>
> Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx"
> %><%@
> Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
> Inherits="biopsy._default"%>
> Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> Line 3: <HTML>
>
> Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
>
>
> **If I change the start page to just the main menu page, then when I
> try
and
> go to my search page from the main menu, I get this error:
> 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 'biopsy.SampleSearch2'.
>
> Source Error:
>
>
> Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
> AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
> Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
> Transitional//EN">
> Line 3: <HTML>
>
>
> Source File: c:\inetpub\wwwroot\biopsy\SampleSearch2.aspx Line: 1
>
> Can ANYONE please help me??? I've run out of ideas. Thanks in
advance!!!!


Nov 19 '05 #6
I followed this thread thinking - wow! this is my problem...

I've got the following...

- A web.config that appears fine
- An application that I compile with no errors - repeatedly
- A virtual directory where the application has been created

I get the message cannot load type XXXX.Global...

If I change my codebehind directive to src I get XXXX.Global is not defined
in the file specified - when it clearly is and was never touched.

If I try to load default.aspx and remove the codebehind and inherits from
global,asax, I get cannot load type XXXX._default, which is the class name
for the default page.

If I migrate the solution to another machine and setup a virtual app - I get
the same issue; thus ruling out an issue with IIS - I think.

Can anyone think of what the problem might be? Please remember, it was
running fine and then not. This is urgent as I'm on a tight deadline with
currently a dead solution.

Thanks,

- Nick

"ST" wrote:
yes!!! that was it!!! thank you! I've been racking my brain for 3 days
now...trying to figure this out. That article helped a LOT! If you have any
other suggestions for articles/books on learning asp...I would really
appreciate it. I'm VERY new to all this, and sort of got thrown into it
without much foundation. (I'm a biologist...turned IT at work).

"Juan T. Llibre [MVP]" wrote:
Take a look at :
http://www.dotnetjunkies.com/Tutoria...4F1105312.dcik

"The Inherits attribute MUST be used with the Src attribute."

You are not using the Src attribute.
You should be using something like :

<%@ Page Language="VB" Inherits="biopsy.SampleSearch2" Src="SampleSearch2.aspx.vb" %>

Mind you, the correct Page statement will depend on
what which source files for that Inheritance you're using.

A better alternative would be to compile your source files
into an assembly, and referencing *them*.


Juan T. Llibre
===========
"ST" <ST@discussions.microsoft.comwrote in message
news:C8**********************************@microsof t.com...
Sorry if this gets posted twice, it gave me an error when I tried to
reply.
Anyway, yeah...they're all under Biopsy. I've checked the namespaces.
What
I did was bring back an old version of the project, and copy in the files
I
need from the new version. Now I can get past the login page (the first
error), but still am getting this second error when I try and access the
page:
>
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 'biopsy.SampleSearch2'.
>
Source Error:
>
>
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Line 3: <HTML>
>
>
Source File: c:\inetpub\wwwroot\biopsy\samplesearch2.aspx Line: 1
>
>
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
Version:1.1.4322.2032
>
>
This is what is at the top of my SampleSearch2.aspx page:
>
<%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
>
>
Anymore ideas? I've tried including/excluding the pages from my project,
and it still results in the same error. Thanks!!
>
>
"Kumar Reddi" wrote:
>
>What is the namespace underwhich all these pages are built under? Is it
>biopsy? Can you make sure you got it right in your code behinds?
>>
>--
>Kumar Reddi
>http://kumarreddi.blogspot.com
>>
>"ST" <ST@discussions.microsoft.comwrote in message
>news:FB**********************************@microso ft.com...
Hi,
I keep getting the parser error, and I have no idea why. I've tried a
number of things including:
1)building/rebuilding about 100x
2)making sure all dll's are in the bin folder in the root of the web
app
3)restarting IIS
4)recreating the virtual dir in IIS
5)playing with any and all settings I could find for the web app in
IIS,
including changing permissions
6)recopying the machineconfig file from my asp v1.4... onto my local
>server
from the production server (just in case the file was corrupt).
7)plus random other things that I can't remember off the top of my
head.
>
I've been working on this problem for 2 days. can someone PLEASE help
>me???
this is what I get if I set my webapp's login page as the start page:
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 'biopsy._default'.
>
Source Error:
>
>
Line 1: <%@ Register TagPrefix="uc1" TagName="menu" Src="menu.ascx"
%><%@
Page Language="vb" AutoEventWireup="false" Codebehind="default.aspx.vb"
Inherits="biopsy._default"%>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Line 3: <HTML>
>
Source File: c:\inetpub\wwwroot\biopsy\default.aspx Line: 1
>
>
**If I change the start page to just the main menu page, then when I
try
>and
go to my search page from the main menu, I get this error:
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 'biopsy.SampleSearch2'.
>
Source Error:
>
>
Line 1: <%@ Page CodeBehind="SampleSearch2.aspx.vb" Language="vb"
AutoEventWireup="false" Inherits="biopsy.SampleSearch2" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN">
Line 3: <HTML>
>
>
Source File: c:\inetpub\wwwroot\biopsy\SampleSearch2.aspx Line: 1
>
Can ANYONE please help me??? I've run out of ideas. Thanks in
>advance!!!!
>>
>>
>>
Jul 8 '06 #7

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

Similar topics

1
by: Karalius, Joseph | last post by:
Can anyone explain what is happening here? I haven't found any useful info on Google yet. Thanks in advance. mmagnet:/home/jkaralius/src/zopeplone/Python-2.3.5 # make gcc -pthread -c...
2
by: ST | last post by:
Hi, I keep getting the parser error, and I have no idea why. I've tried a number of things including: 1)building/rebuilding about 100x 2)making sure all dll's are in the bin folder in the root...
5
by: Kenneth P | last post by:
Hi, I get a Parser Error message when I try to start my asp.net app. Parser Error Message: Could not load type 'DiskoWeb.dLogin'. I have a code behind file and it's class name is dLogin. ...
2
by: pj_servadmin | last post by:
Server Error in '/<applicationName>' Application -------------------------------------------------------------------------------- Parser Error Description: An error occurred during the parsing of...
3
by: filip.norrgard | last post by:
Hi All! I've been developing an ASP.Net 2.0 web application using the Visual Studio 2005 tools. Currently datagrids on a page are filled with data from a dataset (a .xsd file in the "project")...
1
by: =?Utf-8?B?QWNl?= | last post by:
hello, i just converted old .net project (it was a solution with web project and class project) built in .net 1.0 and 1.1 framework to .net 2.0. as i expected, when i clicked on the solution file...
28
by: Marc Gravell | last post by:
In Linq, you can apparently get a meaningful body from and expression's .ToString(); random question - does anybody know if linq also includes a parser? It just seemed it might be a handy way to...
3
by: ups_genius | last post by:
Hi everyone! I created an error parser using the existing CDT stuff by basically copying some of the GNU / make / ... error parsers' code. I also added the extension point for the new error...
0
by: arvindkgs | last post by:
Iam using c lexer that is flex generated and a c++ parser that is bison generated. i have modified the parser to acccept only string input. I am calling the parser function yyparse in a loop and...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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.