User-711744347 posted
It's a url with some parameters. E.g. example.com/?name='john'&guid='shhshs' . When somebody clicks on this link which is embedded in a form (on some other website) with method type as "GET", it takes them to an application where these parameters are
read and it displays some information and images based on the parameters and then you can click another button on this page, which is set to 'POST' that takes you to another page. However, if you sit on the middle page for around 60 seconds in Chrome and Firefox
and then click the button, it displays the error page since original parameters are lost and they are needed for it to display proper form and values. It works if clicked in less than 60 seconds.
I wonder if this has something to do with the way Chrome handles Get requests or perhaps the mixed content 404? Both Chrome and Firefox also seem to be caching content, while IE 11 seems to make a new request on each click.
I did found this "Some browsers, however, will discard any explicit parameters passed in a query string if a form is submitted with the GET method." here https://docs.microsoft.com/en-us/previous-versions/iis/6.0-sdk/ms525506(v%3Dvs.90)