Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Response.Redirect in my Employee page. It redirects to Salary page.

Response.Redirect ("Salary.aspx");

It was working fine until I added exception handling as below.

try
{
   Response.Redirect ("Salary.aspx");
}
catch(Exception ex)
{
//MyLog();
    throw new Exception();
}

//Remaining code in event handler

This caused a new exception saying "Thread was being aborted”. I came to know that this can be avoided by setting endResponse as false for the redirect.

Response.Redirect(url, false);
Context.ApplicationInstance.CompleteRequest();

Explanation of new exception: It always throws the exception but handled by the framework. Since I added a try..catch it was caught there (and I am throwing a new exception)

Note: CompleteRequest does bypass further HTTP filters and modules, but it doesn't bypass further events in the current page lifecycle

Note: Response.Redirect throw this exception to end processing of the current page. ASP .Net itself handles this exception and calls ResetAbort to continue processing.

QUESTION

  1. Whether “setting endResponse as false” can increase performance since the exception is not thrown ?
  2. Whether “setting endResponse as false” can decrease performance since the page lifecycle events are not terminated?

PITFALL

  1. If you set endResponse as false, remaining code in the eventhandler will be executed. So we need to make a if check for the remaining code (Check: if redirection criteria was not met).

Reference

  1. Response.Redirect causes System.Threading.ThreadAbortException
  2. ASP.NET exception "Thread was being aborted" causes method to exit
share|improve this question
Performance can be measure from different aspects !!! what you exactly expecting? – huMpty duMpty Dec 5 '12 at 16:17
@huMptyduMpty Performance from following perspectives 1) Page Response Time 2) Memory usage – Lijo Dec 5 '12 at 16:19
1  
Also, since you trying to improve your website performance, this article might give some information as well – huMpty duMpty Dec 5 '12 at 16:32
2  
I think that if you're concerned about Response.Redirect throwing an exception is causing performance problems, then you might optimizing prematurely. – Matthew Dec 5 '12 at 16:35
2  
Your problem is that you're doing exception handling badly. Just get rid of such try/catch blocks and instead use ASP.NET Health Monitoring‌​. – John Saunders Dec 6 '12 at 5:25

1 Answer

up vote 6 down vote accepted

Ending the response (Response.Redirect(url) or Response.Redirect(url, true)) will not have better performance. Since you have control over the code execution... you can simply not execute any more code in the case when you are going to redirect the user.

This is specified in the MSDN entry for Response.Redirect():

If you specify true for the endResponse parameter, this method calls the End method for the original request, which throws a ThreadAbortException exception when it completes. This exception has a detrimental effect on Web application performance, which is why passing false for the endResponse parameter is recommended.

You DO need to be concerned about the page lifecycle events, as you noted. You shouldn't continue executing the page events if you are going to Redirect the user (not only for performance). I recently wrote a brief example showing what can happen with poor coding/planning if you don't.

The bottom line of that post is that Response.Redirect() returns a 302 to the browser. There is a potential for problems when you use Response.Redirect(url, false) since the page execution continues, and the user can choose to ignore the 302 and instead see the page that would've been rendered... so you need to take steps to ensure they don't see anything you don't want them to see. The NoRedirect add-on for Firefox is helpful when testing this.

So for best performance, use "false", ensure you aren't running any further code, and ensure the page isn't going to render any information you don't want a user to see.

share|improve this answer

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.