Is it possible to make such a HTTP response, that the browser ignores it and keeps showing the previously displayed page?
I mean the following scenario:
a) user clicks something
b) some POST goes to the server (or GET, but let's stick with POST as more interesting)
c) server decides that for some reason it does not want to send the reply at this time
d) server sends specifically crafted response
e) browser does not show the error page, does not show the empty page, does not redirect anywhere, does not reload - just keeps showing what it was showing as if the user never submitted the form
PS Of course it can be wrapped with AJAX, but I ask whether bare-bones non-javascript solution is possible