Response. End is also common

Source: Internet
Author: User

Exception:BecauseCodeThe expression value cannot be calculated because it has been optimized or the local framework is located on the call stack.

Cause:

If you use the response. End, response. Redirect, or server. transfer method
Threadabortexception exception. You can use the try-catch statement to catch this exception.
Response. End
Method termination page execution, and switch this execution to the applicationProgramApplication_endrequest event in the event pipeline. Do not execute response. End
The following code lines.
This problem occurs in response. Redirect and server. Transfer
Method, because both methods are called internallyResponse. End.
Solution
:
To solve this problem, use one of the following methods:
• For response. End, call
Httpcontext. Current. applicationinstance. completerequest method instead of response. End to skip
Code execution for the application_endrequest event.
•For response. Redirect, use overload
Response. Redirect (string URL, bool endresponse). This overload transmits false to the endresponse parameter to cancel
Internal call of response. End. For example:
Response. Redirect ("nextpage. aspx ",
False );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.