Reputation: 15938
You make a request to an asp.net mvc web page. Before the webserver is able to respond, suppose you either close the browser or refresh the page. Does the web server still continue processing the original request and then discard the results at the end?
Upvotes: 2
Views: 243
Reputation: 74058
When the browser is closed, the TCP connection will be closed as well. The web server eventually receives some sort of EOF. Until this happens, the web server will process the request as usual.
Upvotes: 2