If a page is called that requires a lot of processing and the user clicks stop before the end, does the browser simply stop the request at the client side?
Or is a ‘stop’ message sent to the server, i.e. is the processing cancelled?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No message is sent to the server when that happens. When the user presses the stop button, the browser just halts the rendering of the page and ignore any further response= from the server.
If the request has already been sent to the server, the server will usually continue executing it. However, depending on the server’s implementation, may detect the dropped connection. Meaning you can not rely on the fact that it will continue in every case.