Ask a Question related to ASP.NET General, Design and Development.
-
Vanessa Berni #1
global.asax problem
Hi all!
I've created a simple aspx application and when I run it locally on my pc
all works fine.
If I move it on the web server I get the following error
Parser Error Message: Could not load type 'xxxxx.Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.vb" Inherits="xxxxx.Global"
%>
1) I've built the application and the files are in the correct bin directory
2) The aspnet user has all the permissions
Any suggestions?
Thanks Vanessa
Vanessa Berni Guest
-
Session_Start in Global.asax
Is the Session_Start() sub executed on every request or just when a new users session is started? Thx for the help, stan -
global.asax
Hi all! I've created a simple aspx application and when I run it locally on my pc all works fine. If I move it on the web server I get the... -
Name of events in Global.asax
Hi. Reading the docs about the Global.asax events I noticed the names used on the help are not the same on the file. For example, the docs talk... -
Global Error handling in Applicatio_Error() of Global.asax
Hi all, For a web application if we are using web farm, and if i want to do Global Error handling can i use Applicatio_Error() method in... -
What is Global.asax?
It's the class file definition code for the Session and Application events - if you have anything that should be done when a user first connects or... -
Kevin Spencer #2
Re: global.asax problem
The bin directory should be directly below the root of the web application.
That is, the top-level folder of your application should be configured as an
application in IIS. Is it?
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
[url]http://www.takempis.com[/url]
Complex things are made up of
lots of simple things.
"Vanessa Berni" <v.berni@ui.prato.it> wrote in message
news:e%23$3Q7aVDHA.652@tk2msftngp13.phx.gbl...Inherits="xxxxx.Global"> Hi all!
> I've created a simple aspx application and when I run it locally on my pc
> all works fine.
> If I move it on the web server I get the following error
>
> Parser Error Message: Could not load type 'xxxxx.Global'.
>
> Source Error:
> Line 1: <%@ Application Codebehind="Global.asax.vb"directory> %>
>
> 1) I've built the application and the files are in the correct bin> 2) The aspnet user has all the permissions
>
> Any suggestions?
>
> Thanks Vanessa
>
>
Kevin Spencer Guest



Reply With Quote

