Full Refresh of page - Ctrl+F5
You should be able to use this javascript to suite your need:
onClick="window.location.reload(true)"
window.location.reload(true)
has been deprecated. You can use:
window.location.href = window.location.href
Something like this?
<a href="document.location.reload(true);document.location='/mylink'">Click here to refresh the page</a>
you can create a button for refresh , add the following code into your html page
<a href="JavaScript: location.reload(true);">Refresh page</a>