vote up 17 vote down star
4

This KB Article says that ASP.NET's Response.End() aborts a thread.

Reflector shows that it looks like this:

public void End()
{
    if (this._context.IsInCancellablePeriod)
    {
        InternalSecurityPermissions.ControlThread.Assert();
        Thread.CurrentThread.Abort(new HttpApplication.CancelModuleException(false));
    }
    else if (!this._flushing)
    {
        this.Flush();
        this._ended = true;
        if (this._context.ApplicationInstance != null)
        {
            this._context.ApplicationInstance.CompleteRequest();
        }
    }
}

This seems pretty harsh to me. As the KB article says, any code in the app following Response.End() will not be executed, and that violates the principle of least astonishment. It's almost like Application.Exit() in a WinForms app. The thread abort exception caused by Response.End() is not catchable, so surrounding the code in a try..finally won't satisfy.

It makes me wonder if I should always avoid Response.End().

Can anyone suggest, when should I use Response.End(), when Response.Close() and when HttpContext.Current.ApplicationInstance.CompleteRequest()?

ref: Rick Strahl's blog entry.


Based on the input I've received, my answer is, Yes, Response.End is harmful, but it is useful in some limited cases.

  • use Response.End() as an uncatchable throw, to immediately terminate the HttpResponse in exceptional conditions. Can be useful during debugging also. Avoid Response.End() to complete routine responses.
  • use Response.Close() to indicate the response is done.
  • use CompleteRequest() to ... ??

(I still don't know the difference between Response.Close and CompleteRequest().)

flag

5 Answers

vote up 3 vote down check

If you had employed an exception logger on your app, it will be watered down with the ThreadAbortExceptions from these benign Response.End() calls. I think this is Microsoft's way of saying "Knock it off!".

I would only use Response.End() if there was some exceptional condition and no other action was possible. Maybe then, logging this exception might actually indicate a warning.

link|flag
vote up 0 vote down

I disagree with the statement "Response.End is harmful". It's definitely not harmful. Response.End does what it says; it ends execution of the page. Using reflector to see how it was implemented should only be viewed as instructive.


My 2cent Recommendation
AVOID using Response.End() as control flow.
DO use Response.End() if you need to stop request execution and be aware that (typically)* no code will execute past that point.


* Response.End() and ThreadAbortExceptions.

Response.End() throws a ThreadAbortException as part of it's current implementation (as noted by OP).

ThreadAbortException is a special exception that can be caught, but it will automatically be raised again at the end of the catch block.

To see how to write code that must deal with ThreadAbortExceptions, see @Mehrdad's reply to SO How can I detect a threadabortexception in a finally block where he references RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup Method and Constrained Execution Regions


The Rick Strahl article mentioned is instructive, and make sure to read the comments as well. Note that Strahl's issue was specific. He wanted to get the data to the client (an image) and then process hit-tracking database update that didn't slow down the serving of the image, which made his the problem of doing something after Response.End had been called.

link|flag
vote up 2 vote down

I've only used Response.End() as a testing/debugging mechanism

<snip>
Response.Write("myVariable: " + myVariable.ToString());
Response.End();
<snip>

Judging from what you have posted in terms of research, I would say it would be a bad design if it required Response.End

link|flag
vote up 1 vote down

I've used Response.End() in both .NET and Classic ASP for forcefully ending things before. For instance, I use it when there is a certian amount of login attempts. Or when a secure page is being accesed from an unauthenticated login (rough example):

    if (userName == "")
    {
        Response.Redirect("......");
        Response.End();
    }
    else
    {
      .....

When serving files to a user I'd use a Flush, the End can cause issues.

link|flag
Keep in mind, Flush() is not "this is the end". It's just "flush everything so far." The reason you might want a "this is the end" is to let the client be aware that it has all of the content, while the server can go and do other things - update a log file, query a database counter, or whatever. If you call Response.Flush and then do one of those things, the client may continue to wait for more. If you call Response.End() then control jumps out and the DB does not get queries, etc. – Cheeso Jul 7 at 3:41
You could alternatively use the override Response.Redirect("....", true) where the bool is 'endResponse: Indicates whether current execution of the page should terminate" – Robert Paulson Jul 7 at 3:49
It's always better to use the Forms Authentication framework to protect pages that are meant to be secured by login credentials. – Robert Paulson Jul 7 at 3:51
@Chesso, good to know. Currently I use it at the very end of a handler where I'm pulling image data from a database. So perhaps I'll revisit adding an End() below that. @Robert, I guess I never checked out Response.Redirect("....", true). Might be worth looking into. Thanks for the feedback. – Tim Meers Jul 7 at 12:22
1  
Actually, to correct myself, I believe the default of Response.Redirect and Server.Transfer are to call Response.End internally unless you call the override and pass 'false' in. The way your code is written the Response.End is never called, – Robert Paulson Jul 7 at 22:15
vote up 1 vote down

I've never considered using Response.End() to control program flow.

However Response.End() can be useful for example when serving files to a user.

You have written the file to the response and you don't want anything else being added to the response as it may corrupt your file.

link|flag
I understand the need for an API to say "the response is complete". But Response.End() also does a thread abort. This is the crux of the question. When is it a good idea to couple those two things? – Cheeso Jul 6 at 16:55

Your Answer

Get an OpenID
or

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