Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

According this MSDN article HttpApplication.EndRequest can be used to close or dispose of resources. However this event is not fired/called in my application.

We are attaching the handler in Page_Load the following way:

HttpContext.Current.ApplicationInstance.EndRequest += ApplicationInstance_EndRequest;

The only way is to use the Application_EndRequest handler in Global.asax, but this is not acceptable for us.

share|improve this question
If you provide more information about what resources you are trying to dispose, and how you use them, someone can tell you where you should be doing this. – Will Oct 27 '08 at 13:23

4 Answers

up vote 9 down vote accepted

You can use your own HttpModule to capture the EndRequest if you don't want to use the global.asax.

public class CustomModule : IHttpModule 
{
    public void Init(HttpApplication context)
    {
        context.EndRequest += new EventHandler(context_EndRequest);
    }

    private void context_EndRequest(object sender, EventArgs e)
    {
        HttpContext context = ((HttpApplication)sender).Context;
        // use your contect here
    }
}

You need to add the module to your web.config

<httpModules>
    <add name="CustomModule" type="CustomModule"/>
</httpModules>
share|improve this answer
Why is this the case? Why doesn't the event fire without being in an httpmodule? – mcintyre321 May 13 '09 at 21:09
Read Mitchel Sellers answer, that's why. The simple way would be to use the global.asax, but if you cannot use it, you can subscribe your own module to catch the request. – Eduardo Campañó May 16 '09 at 3:23

Per the MSDN documentation, this event occurs AFTER the page is completed, just like BeginRequest. Therefore as far as I know it is not possible to catch this at the page level

share|improve this answer
A thought it can be tricky for debugger to catch this event. But I've added some code which wasn't called (I'm sure). – Crank Oct 27 '08 at 14:18

I believe a better way to chain this event is by providing a base class to global.asax

Language="C#" Inherits="YourBaseClass"

and then overriding Init():

public override void Init()
{
    base.Init();

    BeginRequest += new EventHandler(OnBeginRequest);
    EndRequest += new EventHandler(OnEndRequest);
}

seems to be working for me (catch a breakpoint) but I'm really doing anything with it.

Since there are multiple HttpApplication instances, setting it within Page_load may keep adding it to a non-specific instance. Oddly, I've also noticed that HttpApplication.Init() does not get called for the very first HttpApplication instance (but Application_start) does.

share|improve this answer

The page is probably being disposed before the event fires. You might want to try to do your work in the Page_Unload handler.

share|improve this answer
We need it on the level of Request. We already have workaround for this, but im interessed in fact it is not working the way it should according to MSDN documentation which is saying: The EndRequest event is always raised when the CompleteRequest method is called. – Crank Oct 27 '08 at 13:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.