Parser Error / Server Error

danomatic

Member
Joined
Oct 26, 2002
Messages
7
Location
Boston, MA
Hi:

I am getting a parser error when I try to load a page in this ASP.Net project on my web server.

Here is the error message:

Code:
Server Error in /dotnet/slipstream 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 ASPNetWebProject.Global.

Source Error: 

Line 1:  <%@ Application Codebehind="Global.asax.vb" Inherits="ASPNetWebProject.Global" %>
The first two lines of my global.asax.vb file read as such:

Code:
Imports System.Web
Imports System.Web.SessionState
Nothing is mentioned about:

Code:
"Inherits="ASPNetWebProject.Global" %>"
If it helps the actual pages is at:

http://www.danenglander.com/dotnet/slipstream/ASPX/aboutus.aspx

Any help would be appreciated.

Thanks

Dan Englander
http://danenglander.com/



--------------------------------
 
The error is not occuring the the .asax.vb code-behind file, but
rather in the .asax file itself. If you switch Visual Studio to
HTML view when editing the web service instead of going to code
view, you should see this line at the very top (line 1).

As for the error itself, Im not sure whats causing it. Make sure
that the directory is enabled as an ASP.NET application and that
you also uploaded the binaries (dll files) to the correct directory.
 
Bucky:

I didnt have the dlls uploaded. That solved the problem! thanks, I am still new to .Net.

The Login page wont work yet because Oracle is on a different server. I might have to put that page in a frame where as the content will actually be on the Oracle server, but the top frame will be just a few pixels high and show my own domain name.


thanks!

Dan
 
Back
Top