473,698 Members | 2,398 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Parse error message - repeat under managed account

Since I'm not getting any response from the community, I'm reposting this
under my managed account.

I've turned my web.config friendly error messages off and it may be easier
to view what I'm experiencing than try to translate it.

Here's the error:

Line 1: <%@ Application Codebehind="Glo bal.asax.vb"
Inherits="netfr aud.us.Global" %>

Here's the line in the global.asax:

<%@ Application Codebehind="Glo bal.asax.vb" Inherits="netfr aud.us.Global" %>

It was much worse but I am at this point now. I had Access forbidden and
Access Denied. FPSE 2K2 and I went round and round.

I have a subdomain: forums.netfraud .us which, during my battle with FPSE,
was down. It removed, or I told it to remove my RX (script only) settings
for the site. It now works again. The subdomain is actually
\webroot\forums . I don't know why I'm have such a mental block with .NET
and VS.2K3. Perhaps it is all the years of VS 6 and Classic ASP. Any
pointers to some reference for basic understanding and step through configs
would also be helpful. All references I have found are complicated configs.
They're not too technical, they just don't apply and the MSFT articles don't
seem to have much in them or it's How-To, but not What-To-Do when How-To
fails.
Ex. http://support.microsoft.com/default...297954&sd=tech

TIA...

Roland
Nov 19 '05
14 2391
"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
: Hey, Roland, do you want to try an experiment ?
:
: Delete the code-behind global.asax file,
: and replace it with this global.asax file :
:
: global.asax:
: ========
: <script language="VB" runat="Server">
: Sub Application_OnS tart(Sender as Object, E as EventArgs)
: End Sub
:
: Sub Application_OnE nd(Sender as Object, E as EventArgs)
: End Sub
:
: Sub Session_OnStart (Sender as Object, E as EventArgs)
: End Sub
:
: Sub Session_OnEnd(S ender as Object, E as EventArgs)
: End Sub
:
: Sub Application_Aut henticateReques t(ByVal sender as Object, ByVal e as
: EventArgs)
: End Sub
:
: Sub Application_Err or(ByVal sender as Object, ByVal e as EventArgs)
: End Sub
: </script>
: =======
:
: Try that, compile and run your application again,
: and let me know how you do.
:
: Backup (copy) your current global.asax and global.asax.vb files,
: so you can restore them, if you want to go back to them.

I'll try anything. (O:=

I can go to Windows Explorer and open my global.asax and it opens in VS.NET,
although I am unable to do it by calling the file from within VS.NET. I
must be VS.NET stupid.

This is all that is in it.
<%@ Application Codebehind="Glo bal.asax.vb" Inherits="netfr aud.us.Global" %>

And, that's my error that lists.

I can't backup the files. It says they're in use. I stopped the web site
but something else must have that file in use. Any ideas?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Nov 19 '05 #11
You can do two things at this point.

1. Delete the global.* files and substitute a new, non-code-behind
global.asax with the content I sent in my previous message.

or...

2. Change
<%@ Application Codebehind="Glo bal.asax.vb" Inherits="netfr aud.us.Global" %>

So it reads :
<%@ Application Codebehind="Glo bal.asax.vb" Inherits="Globa l" %>

Whichever way you want to handle that should work.

Just recompile the app after you make the changes.

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Roland Hall" <no****@nononon ono.us> wrote in message
news:uc******** ******@tk2msftn gp13.phx.gbl...
"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:%2******** *******@TK2MSFT NGP10.phx.gbl.. .
: Hey, Roland, do you want to try an experiment ?
:
: Delete the code-behind global.asax file,
: and replace it with this global.asax file :
:
: global.asax:
: ========
: <script language="VB" runat="Server">
: Sub Application_OnS tart(Sender as Object, E as EventArgs)
: End Sub
:
: Sub Application_OnE nd(Sender as Object, E as EventArgs)
: End Sub
:
: Sub Session_OnStart (Sender as Object, E as EventArgs)
: End Sub
:
: Sub Session_OnEnd(S ender as Object, E as EventArgs)
: End Sub
:
: Sub Application_Aut henticateReques t(ByVal sender as Object, ByVal e as
: EventArgs)
: End Sub
:
: Sub Application_Err or(ByVal sender as Object, ByVal e as EventArgs)
: End Sub
: </script>
: =======
:
: Try that, compile and run your application again,
: and let me know how you do.
:
: Backup (copy) your current global.asax and global.asax.vb files,
: so you can restore them, if you want to go back to them.

I'll try anything. (O:=

I can go to Windows Explorer and open my global.asax and it opens in
VS.NET,
although I am unable to do it by calling the file from within VS.NET. I
must be VS.NET stupid.

This is all that is in it.
<%@ Application Codebehind="Glo bal.asax.vb" Inherits="netfr aud.us.Global"
%>

And, that's my error that lists.

I can't backup the files. It says they're in use. I stopped the web site
but something else must have that file in use. Any ideas?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */

Nov 19 '05 #12

"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:Oy******** ******@TK2MSFTN GP10.phx.gbl...
: You can do two things at this point.
:
: 1. Delete the global.* files and substitute a new, non-code-behind
: global.asax with the content I sent in my previous message.
:
: or...
:
: 2. Change
: <%@ Application Codebehind="Glo bal.asax.vb" Inherits="netfr aud.us.Global"
%>
:
: So it reads :
: <%@ Application Codebehind="Glo bal.asax.vb" Inherits="Globa l" %>
:
: Whichever way you want to handle that should work.
:
: Just recompile the app after you make the changes.

since redoing the server extensions, I've found other issues.

I had this error:
Cannot execute a program. "...vbc.exe "

I gave the _web applications group RX to vbc.exe, csc.exe and cvtres.exe. I
think IIS Lockdown was blocking them.

I now have this error:
Server Error in '/' Application.
----------------------------------------------------------------------------
----

Compilation Error
Description: An error occurred during the compilation of a resource required
to service this request. Please review the following specific error details
and modify your source code appropriately.

Compiler Error Message: BC30182: Type expected.

Source Error:

Line 12: End Sub
Line 13:
Line 14: Sub Application_Aut henticateReques t(ByVal sender as Object, ByVal e
as
Line 15: EventArgs)
Line 16: End Sub
Source File: D:\websites\net fraud\global.as ax Line: 14

I think the line wrap from news got me here...

I fixed that and ran a rebuild and it's working.
I owe ya' one.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Nov 19 '05 #13
re:
I fixed that and ran a rebuild and it's working.
Glad to know that!

re: I owe ya' one.
I'm happy you can work with ASP.NET now.
That's the only "payment" I need. :-)

Have fun writing ASP.NET web apps !

Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
=============== =======

"Roland Hall" <no****@nononon ono.us> wrote in message
news:Ot******** ******@tk2msftn gp13.phx.gbl...
"Juan T. Llibre" <no***********@ nowhere.com> wrote in message
news:Oy******** ******@TK2MSFTN GP10.phx.gbl...
: You can do two things at this point.
:
: 1. Delete the global.* files and substitute a new, non-code-behind
: global.asax with the content I sent in my previous message.
:
: or...
:
: 2. Change
: <%@ Application Codebehind="Glo bal.asax.vb"
Inherits="netfr aud.us.Global"
%>
:
: So it reads :
: <%@ Application Codebehind="Glo bal.asax.vb" Inherits="Globa l" %>
:
: Whichever way you want to handle that should work.
:
: Just recompile the app after you make the changes.

since redoing the server extensions, I've found other issues.

I had this error:
Cannot execute a program. "...vbc.exe "

I gave the _web applications group RX to vbc.exe, csc.exe and cvtres.exe.
I
think IIS Lockdown was blocking them.

I now have this error:
Server Error in '/' Application.
----------------------------------------------------------------------------
----

Compilation Error
Description: An error occurred during the compilation of a resource
required
to service this request. Please review the following specific error
details
and modify your source code appropriately.

Compiler Error Message: BC30182: Type expected.

Source Error:

Line 12: End Sub
Line 13:
Line 14: Sub Application_Aut henticateReques t(ByVal sender as Object, ByVal
e
as
Line 15: EventArgs)
Line 16: End Sub
Source File: D:\websites\net fraud\global.as ax Line: 14

I think the line wrap from news got me here...

I fixed that and ran a rebuild and it's working.
I owe ya' one.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */

Nov 19 '05 #14
"Juan T. Llibre" wrote in message
news:e2******** *****@TK2MSFTNG P15.phx.gbl...
: re:
: > I fixed that and ran a rebuild and it's working.
:
: Glad to know that!
:
: re:
: > I owe ya' one.
:
: I'm happy you can work with ASP.NET now.
: That's the only "payment" I need. :-)

Well, at least it's possible. I'm still a whiney little school girl when it
comes to VS.NET. (O:= I need to do a lot more reading.

: Have fun writing ASP.NET web apps !

Thanks Juan.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Nov 19 '05 #15

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

Similar topics

8
7415
by: Spartanicus | last post by:
The document at http://homepage.ntlworld.com/spartanicus/custom_dtd.htm uses a custom DTD, the w3c validator validates it but with this warning: "Unknown Parse Mode! The MIME Media Type (text/html) for this document is used to serve both SGML and XML based documents, and it is not possible to disambiguate it based on the DOCTYPE Declaration in your document. Parsing will continue in SGML mode."...
6
19024
by: Ehartwig | last post by:
I recently created a script for user verification, solved my emailing issues, and then re-created the script in order to work well with the new PHP 5 that I installed on my server. After submitting user information into my creation script, I get the following error from the page that is suppose to insert the user data into the database, create a code, then send an email out for verification. Parse error: parse error, unexpected $end in...
9
3204
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My questions are below... "David Good" wrote: > We have a network running both Win2k and Win2k3 webservers and our web sites > reside on a UNC network share that happens to be a Network Appliance NAS.
2
2132
by: pj_servadmin | last post by:
Server Error in '/<applicationName>' 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 'Default.Global'. Source Error: Line 1: <%@ Application...
9
5731
by: RMC | last post by:
Hello, I'm looking for a way to parse/format a memo field within a report. The Access 2000 database (application) has an equipment table that holds a memo field. Within the report, the memo field is printed within the detailed area. The problem is, the apllication is not setup properly, thus the users are entering data within the memo field as: location1 1/1/2005 1/1/2006
1
64132
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 article “How to Parse a File in C++”, we are actually mostly lexing a file which is the breaking down of a stream in to its component parts, disregarding the syntax that stream contains. Parsing is actually including the syntax in order to make...
8
9824
by: =?Utf-8?B?TWFydGluIFNhY2hz?= | last post by:
I have been using MSCONFIG (XP Pro) for four years with no problem. I always use it in Administrator. Last night, when I attempted to go into selective startup mode, I got the following error message: "An access denied error was returned while attempting to change a service." It appeared to do what I asked it to do but every time I click APPLY or OK in MSCONFIG, I now get that message. Administrator has always had access to everything. I...
1
6466
by: FightClubDiego | last post by:
Hey.. I've been working on these sign up / log in forms for my new Game Site, and everything else in the game works but the registration!! I keep ketting the unexpected $end and Im tired of it! Here is the code... SOMEBODY PLEASE HELP ME!! I'm going crazy! haha <?php //This contains user stuffs switch($_GET) { case 'newuser': new_user_form(); break; case 'newusersub': new_user_submit(); break; case 'edituser': edit_user_begin(); break;...
1
6184
by: maconbot | last post by:
hi all, please exuse my email ">" i am working on location. > hey team, thanks for the quick reply. > > i am trying to parse a pop3 account and populate it into flash. > > the how to code... > http://www.derickrethans.nl/parsing_mail_with_php.php > > - is this the class? i am really confused how to plug this into my
0
9166
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8899
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8871
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7737
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6525
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5861
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4621
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.