What is the diffrence between page refresh and page reload?
what is the diffrence between page refresh and page reload?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Priya LingePosted Nov 2, 2011, 2:37 AM
It depends on the caching policy for the page and the method used for
fetching the page in the first place. If you fetched the page via
a POST, a refresh will re-send the POST data while putting the URL
in a new window will issue a GET to the server.
If the original request is a GET, the behaviour depends on how the
current page is cached. Hitting refresh will cause the browser to
check back with the server for the page (but not necessarily any
scripts or images). If the page is set to be cacheable then pasting
the URL in a new window might well just pull the page out of cache
without hitting the server.
Hope this will help you.
Thanks.