What does Response.End will do?

Skill/Topic: Intermediate
A) It will stop the server process
B) It will stop the client process
C) None of the above

Showing Answers 1 - 15 of 15 Answers

rame

  • May 23rd, 2006
 

The Process doesn't stop. But the browser does not send the client side.

  Was this answer useful?  Yes

Cliff

  • Jul 24th, 2013
 

I think the answer was slightly misstated. It stops the server process from continuing that current page process. As stated by Microsoft in the below quote, it will return whatever is in the buffer (if anything).

"If Response.Buffer is set to TRUE, calling Response.End flushes the buffer. If you do not want output returned to the user, you should first call Response.Clear."

  Was this answer useful?  Yes

venkat

  • Feb 24th, 2015
 

A

  Was this answer useful?  Yes

Pratul Tripathi

  • Sep 2nd, 2015
 

It will stop the execution of request. Order is as below
1- Return all buffered output to client
2- Stop the process at server
3- Raise *EndRequest* Event.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions