Tagged Questions

0
votes
1answer
21 views

Application_Error event in Global.asax not firing in Release Mode? ASP.NET MVC application

I'm working on an ASP.NET MVC application. I'm having a problem where my Application_Error() event in my Global.asax file isn't firing in Release Mode. If I compile in Debug it fir …
0
votes
2answers
19 views

Generating the standard ASP.NET ‘uncaught exception’ page HTML from the exception itself?

Hi all. Is it possible to generate the HTML page normally shown for an uncaught exception in ASP.NET, using an Exception object? I have an app that catches an exception in Global …
1
vote
2answers
81 views

ASP.NET MVC app custom error pages not displaying in shared hosting environment

I'm having an issue with custom errors on an ASP.NET MVC app I've deployed on Go Daddy. I've created an ErrorController and added the following code to Global.asax to catch unhandl …
2
votes
3answers
133 views

When’s the earliest i can access some Session data in global.asax?

Hi folks, i want to check if the Session contains some key/value data, in my global.asax. I'm not sure when the earliest possible time (and method name) is, to check this. thanks …
1
vote
2answers
600 views

ASp.NET MVC doesn’t call global.asax’ EndRequest

I am trying to perform some actions at the end of every request. I changed the Application_Start() that is generated when created new project to make a test: protected void Applic …
1
vote
3answers
349 views

Looking for sample global.asax.cs files for routing information.

No matter what you read about ASP.NET routing or REST I think the best way to learn more about them is to read other people's routing files. In a video with Jeff once you could cat …
1
vote
3answers
145 views

classic asp/asp.net website - global.asa not working

Hi, I've recently been given a website written in classic asp to configure and set up - although it also appears to have pages written in asp.net. The problem I'm having at the m …
0
votes
1answer
49 views

Using the Ninject NLogModule Logger in global.asax

I'm using Ninject for DI in my asp.net application, so my Global class inherits from NinjectHttpApplication. In my CreateKernel(), I'm creating my custom modules and DI is working …
0
votes
2answers
54 views

How to do something firstly when the asp.net server start

Hi all I need an interface that can be run firstly when the application start. We can write some code in Application_Start of global.ascx. Is there any other method to finish it af …
0
votes
3answers
215 views

Call javascript function from global.asax in asp.net mvc

How to call or make the javascript function from the Application_Start of global.asax in asp.net mvc(C#) application?
0
votes
1answer
19 views

urlauthorization with custom roleprovider

I am interacting with a third party httpmodule for authentication. I implemented my custom roleprovider to interact with that. However they use a CustomPrincipal instead of the exp …
1
vote
2answers
54 views

Help debugging - when does the Application_Start run in global.asax file?

Here's the snippet from my Global.asax: <script runat="server"> void Application_Start(object sender, EventArgs e) { // log this call EventLogger.Log(" …
0
votes
0answers
9 views

Do data source binding in Global.asax??

Hi~guys... I knew global.asax normally is used for session stuffs, or error handling. However, I saw someone's code, and he did data source binding in global.asax. Moreover, it's …
0
votes
1answer
32 views

Subscribing Events in Global.Asax

I have some couple of events like when user subscribes to my newsletter it fires a subscribed event so that an e-mail will be sent to corresponding users to notify them about their …
1
vote
1answer
100 views

ASP.NET Application Start without using Global.asax

Hello, I'm developing a plugin like application for a web site. Due to requirements it will live in the same physical path and the same application pool as the main web site which …

1 2 3 4 5 7 next
15 30 50 per page