Chrome Save As reloads page without POST

I have a small php example at http://codepad.org/EW9vh8sF .

It takes two variables, start and end, and returns them back to the same php file, which then displays the two variables again.

When using the "Save As ..." option in Chrome (version 29.0.1547.57 m) and selecting "Web Page, HTML Only", the saved file contains the default values ​​for my two variables.

It seems to me that Chrome actually reloads the page without sending the previously passed variables as POST, and then saves the reloaded page with the default values.

Firefox (version 24.0) successfully saves the page. Using Chrome and saving the "Web Page Shutdown" is also successful - my new update variables are stored in an html file.

When I changed the use of GET instead of POST, it works as intended, even on "HTML only", but it is not a convenient solution.

This is tested on different computers with different versions of browsers, as well as on different web servers. The behavior is the same regardless of platform.

Is there anything I can do programmatically to change this behavior?

+7
google-chrome
source share

No one has answered this question yet.

See related questions:

633
Using Chrome Element Inspector in Print Preview?
586
Updating the address bar with a new URL without a hash or reloading the page
266
Unusual error in Chrome Developer Console - Failed to load resource: net :: ERR_CACHE_MISS
216
How to use Chrome Network Forwarding debugger
197
How to get Chrome script debugger to reload javascript?
twenty
Chrome dialog: window.print () opens only after page reload (javascript)
eleven
Chrome "Auto-Reload Generated CSS" does not reload the page when SASS recompiles CSS
one
How to make my single HTML webpage offline offline in Chrome?
0
Is there a way to reload post post variables in Chrome using javascript?

All Articles