Use Window.history.go (-1) to return to the previous page at the same time to refresh the " up ", this is suitable for " on the page " contains dynamic update content, such as calling the Forum's new posts, call the article system's latest article and so on. If your " up page " does not have dynamic update content, suggest not to do this, others point to return time to load again ...
1. Force load and Refresh once
Add the following code to the page you want to load: <script>
if (window.name!= "Bencalie") {
Location.reload ();
Window.name = "Bencalie";
}
else{
Window.name = "";
}
</script>
2. Prohibit caching, to achieve the refresh effect. Content reference to: <meta http-equiv= "Expires" content= "0" >
<meta http-equiv= "Cache-control" content= "No-cache" >
<meta http-equiv= "Pragma" content= "No-cache" >
Back to previous code: <a href= "Javascript:window.history.go ( -1)" > Return to previous page </a>--------------------------------------- ------------------------------------------Backup as soon as you enter the page scroll to the bottom effect: <body onload= "Window.scrollto (0, Document.body.scrollHeight) ">