0
votes
2answers
283 views
C# ASP.NET HttpModules: HttpApplication Events
Hi All,
I have an HttpApplication (Global.asax) in my web application, I use this to catch and log unhandled Exceptions and to setup WebFormURLRouting. This all works, however I want to move this …
-1
votes
2answers
227 views
Get current HttpApplication, but not through HttpContext
Can I get a hold of current HttpApplication instance in ASP.NET, but not through HttpContext.Current.ApplicationInstance (assume no HttpContext)?
0
votes
1answer
66 views
Application_BeginRequest for static *.JS files in ASP.NET in IIS6?
I'm trying to do something seemingly simple: ensure that Application_BeginRequest is called for every static *.JS URL sent to my IIS6 website, whether or not the underlying file exists.
What's a …
2
votes
2answers
159 views
How to show a custom 404 page in ASP.NET-MVC?
When any URL is 404 on my site, i want to show a custom 404 page that is rendered with ASP.NET-MVC. Hoewever i do not want to use the wildcard route approach because that would disable standard …
0
votes
2answers
211 views
Unit testing an HttpApplication
I have a class derived from HttpApplication that adds some extra features. I'm to the point where I need to unit test these features, which means I have to be able to create a new instance of the …
0
votes
2answers
590 views
global asax application_start application begin_request methods ???
I have a problem. While migrating from classic pipeline mode to integrated pipeline mode at IIS 7.0 we encounter the problem :
Server Error in '/' Application.
Request is not available in this …
0
votes
1answer
257 views
How to test HttpApplication Object with HttpApplicationState
I am trying to test a 'plugin' for an ASPNET HttpApplication that is loaded on Application_Start.
The code is something like this:
private HttpApplication application;
public void …
0
votes
3answers
207 views
Global.asax issue
Hello everyone,
I am developing an HttpModule and using Global.asax. I have developed a class which derives from HttpApplication, but Application_Start method of my class never executes (I create a …
1
vote
7answers
242 views
ASP.Net Session State
Hi,
I was wondering whether it would be possible to change the sqlConnectionString used for SessionState in ASP.net based upon the domain an application is running on?
A scenario; We have 20 sites …
1
vote
1answer
713 views
AuthenticateRequest event
Hello,
Q1 - To my understanding FormsAuthenticationModule is subscribed to AuthenticateReuqest event, and thus only after this event is fired, is FormsAuthenticationModule called. But the following …
2
votes
1answer
127 views
Why is HttpApplication constructor called several times
Hi,
Can somebody explain why the constructor of a custom class derived from HttpApplication is called several times upon application startup?
My code structure is the following:
- My Global class …
1
vote
1answer
292 views
Why don’t PreSendRequestHeaders and PreSendRequestContent run consistently?
When working with HTTP modules, has anyone noticed that the final two events in the pipeline -- PreSendRequestHeaders and PreSendRequestContent -- don't always run?
I've verified that code bound to …
1
vote
2answers
685 views
Where do I catch and handle maxAllowedContentLength exceeded in IIS7?
Hi all,
I have an aspx page where I’m allowing a user to upload a file and I want to cap the max file upload size to be 10MB. IIS7, .NET 3.5. I have the following configured in my web.config file:
…
0
votes
1answer
132 views
Getting ApplicationState in asp.net without HttpContext
I got a webapp that stores a config object in ApplicationState.
This object contains the connection string to the database among other things.
Sometimes i start a async thread to do a few longer …
3
votes
1answer
601 views
HTTPModule Event Execution Order?
Does anyone know of a site or page, or know the order of execution for the events of the HTTPApplication class for HTTPModule event execution?
I found the MSDN Documentation for all of the events, …
