vote up 6 vote down star
2

Is there any Standard for F5 and Ctrl+F5 action in browser?

I once did experiment in IE6 and Firefox 2.x. The "F5" will trigger HTTP request sent to server end with "If-Modified-Since" header, while "Ctrl+F5" doesn't have such header. In my understanding, F5 will try to utilize cached content as much as possible; and "Ctrl+F5" is intended to abandon all cached content and just retrieve content from servers again. I once wrote about it in my blog (which is in Chinese, because I am a Chinese).

Today, I suddenly found that in latest browser such as Chrome, IE8. It doesn't work in this way any more. Both "F5" and "Ctrl+F5" send "If-Modified-Since" header.

I'm wondering whether there is some "standard" behaviors for "F5" and "Ctrl+F5" in browser.

Update: Thanks to this link. It turns out that IE7/IE8 behaves like this because the focus is not inside web page. However, it seems that Chrome doesn't define "Ctrl+F5". So, its "Ctrl+F5" behaves exactly as "F5" does.

flag

55% accept rate

5 Answers

vote up 6 vote down check

Generally speaking:

F5 may give you the same page even if the content is changed, because it may load the page from cache. But Ctrl-F5 forces a cache refresh, and will guarantee that if the content is changed, you will get the new content.

link|flag
vote up 1 vote down

At least in Firefox (v3.5), cache seems to be disabled rather than simply cleared. If there are multiple instances of the same image on a page, it will be transferred multiple times. That is also the case for img tags that are added subsequently via Ajax/JavaScript.

So in case you're wondering why the browser keeps downloading the same little icon a few hundred times on your auto-refresh Ajax site, it's because you initially loaded the page using CTRL-F5.

link|flag
vote up 0 vote down

When user press F5 although new request goes to web server and get a responce for the request as well. But when the responce header is Parsed it check the required information in browser cache. If the required information in cache has not expired then that information is restored from in cache itself.

When user click on Ctrl F5 even then new request goes to web server and get a responce. But this time when the responce header is Parsed it do not check any required information in cache, and bring all updated information form server only.

link|flag
vote up 29 vote down

It is up to the browser but they behave in similar ways.

I have tested FF, IE7, Opera and Chrome.

F5 usually updates the page only if it is modified. The browser usually tries to use all types of cache as much as possible and adds an "If-modified-since" header to the request. Opera differs by sending a "Cache-Control: no-cache"

CTRL-F5 is used to force an update, dissregaring any cahce. IE7 add an "Cache-Control: no-cache" as does FF who also add "Pragma: no-cache". Crome does a normal "If-modified-since" and Opera ignores the key.

If I remember correctly it was Netscape who was the first browser to add support for cache-control by adding "Pragma: No-cache" when you pressed CTRL-F5.

Edit: Updated table

The table below is updated with information on what will happen when the browsers refresh-button is clicked (after a request by Joel Coehoorn), and the "max-age=0" Cache-control-header.

+------------+--------------------------------------------+
|            |             Firefox 3.0.6           (WinXP)|
|            |  +-----------------------------------------+
|            |  |          MSIE 7.0.5730.11        (WinXP)|
|            |  |  +--------------------------------------+
|            |  |  |       Crome 1.0.154.48        (WinXP)|
|            |  |  |  +-----------------------------------+
|            |  |  |  |    Opera 9.61              (WinXP)|
|            |  |  |  |  +--------------------------------+
|            |  |  |  |  |                                |
+------------+--+--+--+-----------------------------------+
|          F5|IM|I |IM|C |                                |
|    SHIFT-F5|- |- |IM|- | Legend:                        |
|     CTRL-F5|CP|C |IM|- | I = "If-Modified-Since"        |
|      ALT-F5|- |- |- |C | P = "Pragma: No-cache"         |
|    ALTGR-F5|- |I |- |- | C = "Cache-Control: no-cache"  |
+------------+--+--+--+--+ M = "Cache-Control: max-age=0" |
|      CTRL-R|IM|I |IM|C | - = ignored                    |
|CTRL-SHIFT-R|CP|- |- |- |                                |
+------------+--+--+--+--+                                |
|       Click|IM|I |IM|C | With 'click' I refer to a      |
| Shift-Click|CP|I |IM|C | mouse click on the browsers    |
|  Ctrl-Click|IM|C |IM|C | refresh-icon.                  |
|   Alt-Click|IM|I |IM|C |                                |
| AltGr-Click|IM|I |IM|- |                                |
+------------+--+--+--+--+--------------------------------+
link|flag
Any chance you could add SHIFT-ClickRefreshButton to this table? – Joel Coehoorn Feb 20 at 15:37
BTW: Very nice job color-coding the key like that. – Joel Coehoorn Feb 20 at 15:38
@Joel Coehoorn: Updated the table with click on the refresh button. Got to love ASCII graphic tables, don't you? The color-coding was is just a side-effect of the code color-coding. – some Feb 20 at 18:11
Can't you do it as a proper HTML table? – John Topley Feb 20 at 18:32
Crivens, that's a piece of work. +1. – skaffman Jul 22 at 8:53
show 1 more comment
vote up 0 vote down

I believe that ctrl-f5 additionally updates the mime-type from the server also.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.