Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Security > Parser Error on the base project created by Visual Studio

Reply
Thread Tools

Parser Error on the base project created by Visual Studio

 
 
Maras
Guest
Posts: n/a
 
      10-09-2003
Hi,

[...]

> Is it me or am I doing something wrong???


I think you should configure your web directory in IIS as application.

Cheers,
--
Maras
 
Reply With Quote
 
 
 
 
CES
Guest
Posts: n/a
 
      10-09-2003
All,
I've just started to use VBStudio, up tell now I've coded with note pad, so
this is all new to me. I'm trying to create my first project but I'm running
into problems.

I've created a base ASP.net web application and used the default name
WebApplication1. Without doing !!anything!! to the WebForm1.aspx I build the
project by going to File Menu Build\Build Solution (Ctr+Shift+B) :

In the Output window I get:

------ Build started: Project: WebApplication1, Configuration: Debug
..NET ------
Preparing resources...
Updating references...
Performing main compilation...
Building satellite assemblies...
---------------------- Done ----------------------
Build: 1 succeeded, 0 failed, 0 skipped


I then when I hit F5 to run the project, and IE displays this Parser Error
message:

Parser Error Message: Could not load type 'WebApplication1.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.vb"
Inherits="WebApplication1.Global" %>

Source File: \\server\\_temp\WebApplication1\global.asax Line: 1

I've checked the security privileges on the WebApplication1 and the
"aspnet_wp account" and the "Internet Guest Account" have "Full Control"
access. Additionally the "aspnet_wp account" has full privileges on
Windows\Microsoft.NET\Framework\v1.1.4322 and
WINDOWS\Microsoft.NET\Framework\v1.0.3705 directories.

The only way I can get the page WebForm1.aspx to load and not throw an error
is by removing both of the Inherits properties from these files:

WebForm1.aspx:
<%@ Page Language="vb" AutoEventWireup="false"
Inherits="WebApplication1.WebForm1"%>

Global.asax:
<%@ Application Codebehind="Global.asax.vb"
Inherits="WebApplication1.Global" %>

But that doesn't seem to make any sense, if the page won't work as is why
are the Inherits="WebApplication1.WebForm1 and
Inherits="WebApplication1.Global" setup by default???

Is it me or am I doing something wrong???


 
Reply With Quote
 
 
 
 
CES
Guest
Posts: n/a
 
      10-09-2003
I"m not sure what you mean but Application Settings under the Home Directory
Tab for the web site have values of
Application Name : Default Application
Starting point: <Default Web Site>
Execute Permissions: Scripts Only
Application Protection: Medium (Pooled)

Which are the defaults.

CES



"Maras" <> wrote in message
news:bm3hck$jmb$...
> Hi,
>
> [...]
>
> > Is it me or am I doing something wrong???

>
> I think you should configure your web directory in IIS as application.
>
> Cheers,
> --
> Maras



 
Reply With Quote
 
George Durzi
Guest
Posts: n/a
 
      10-09-2003
try running aspnet_regiis.exe -c
it sits in
c:\WINNT\Microsoft.NET\Framework\v1.0.3705\
or wherever your framework is installed


"CES" <> wrote in message
news:...
> I"m not sure what you mean but Application Settings under the Home

Directory
> Tab for the web site have values of
> Application Name : Default Application
> Starting point: <Default Web Site>
> Execute Permissions: Scripts Only
> Application Protection: Medium (Pooled)
>
> Which are the defaults.
>
> CES
>
>
>
> "Maras" <> wrote in message
> news:bm3hck$jmb$...
> > Hi,
> >
> > [...]
> >
> > > Is it me or am I doing something wrong???

> >
> > I think you should configure your web directory in IIS as application.
> >
> > Cheers,
> > --
> > Maras

>
>



 
Reply With Quote
 
CES
Guest
Posts: n/a
 
      10-09-2003
George,
Tried your suggestion but I'm still getting the error message...I did
however isolate the problem to IIS and not the code (I copied the
application to me web site and it runs just fine).

Any other suggestions would be appreciated.
CES

"George Durzi" <gdurzi@nospam_hotmail.com> wrote in message
news:%...
> try running aspnet_regiis.exe -c
> it sits in
> c:\WINNT\Microsoft.NET\Framework\v1.0.3705\
> or wherever your framework is installed
>
>
> "CES" <> wrote in message
> news:...
> > I"m not sure what you mean but Application Settings under the Home

> Directory
> > Tab for the web site have values of
> > Application Name : Default Application
> > Starting point: <Default Web Site>
> > Execute Permissions: Scripts Only
> > Application Protection: Medium (Pooled)
> >
> > Which are the defaults.
> >
> > CES
> >
> >
> >
> > "Maras" <> wrote in message
> > news:bm3hck$jmb$...
> > > Hi,
> > >
> > > [...]
> > >
> > > > Is it me or am I doing something wrong???
> > >
> > > I think you should configure your web directory in IIS as application.
> > >
> > > Cheers,
> > > --
> > > Maras

> >
> >

>
>



 
Reply With Quote
 
CES
Guest
Posts: n/a
 
      10-09-2003
All,
I've started a new threed please reply their - Setting up a Web Application
on IIS 5.1
CES
"CES" <> wrote in message
news:...
> All,
> I've just started to use VBStudio, up tell now I've coded with note pad,

so
> this is all new to me. I'm trying to create my first project but I'm

running
> into problems.
>
> I've created a base ASP.net web application and used the default name
> WebApplication1. Without doing !!anything!! to the WebForm1.aspx I build

the
> project by going to File Menu Build\Build Solution (Ctr+Shift+B) :
>
> In the Output window I get:
>
> ------ Build started: Project: WebApplication1, Configuration: Debug
> .NET ------
> Preparing resources...
> Updating references...
> Performing main compilation...
> Building satellite assemblies...
> ---------------------- Done ----------------------
> Build: 1 succeeded, 0 failed, 0 skipped
>
>
> I then when I hit F5 to run the project, and IE displays this Parser Error
> message:
>
> Parser Error Message: Could not load type 'WebApplication1.Global'.
>
> Source Error:
>
> Line 1: <%@ Application Codebehind="Global.asax.vb"
> Inherits="WebApplication1.Global" %>
>
> Source File: \\server\\_temp\WebApplication1\global.asax Line: 1
>
> I've checked the security privileges on the WebApplication1 and the
> "aspnet_wp account" and the "Internet Guest Account" have "Full Control"
> access. Additionally the "aspnet_wp account" has full privileges on
> Windows\Microsoft.NET\Framework\v1.1.4322 and
> WINDOWS\Microsoft.NET\Framework\v1.0.3705 directories.
>
> The only way I can get the page WebForm1.aspx to load and not throw an

error
> is by removing both of the Inherits properties from these files:
>
> WebForm1.aspx:
> <%@ Page Language="vb" AutoEventWireup="false"
> Inherits="WebApplication1.WebForm1"%>
>
> Global.asax:
> <%@ Application Codebehind="Global.asax.vb"
> Inherits="WebApplication1.Global" %>
>
> But that doesn't seem to make any sense, if the page won't work as is why
> are the Inherits="WebApplication1.WebForm1 and
> Inherits="WebApplication1.Global" setup by default???
>
> Is it me or am I doing something wrong???
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Went from using Visual Web Develop express to Visual Studio 2005 and getting error when trying to open project jonny ASP .Net 1 10-06-2007 06:52 AM
Should I write Visual studio 2005 or Visual studio 2003 MCSD =?Utf-8?B?VmlqYXk=?= Microsoft Certification 14 06-30-2006 09:05 AM
Is Visual Studio Team System and Visual Studio Foundation Server are same?. Thirumalai ASP .Net 0 05-22-2006 08:48 AM
visual studio .net 2003 verses visual studio .net 2002 wh ASP .Net 2 01-16-2004 04:54 PM
Parser Error on the base project created by Visual Studio Maras ASP .Net 5 10-09-2003 06:27 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57