Try to add the following in your secured page:
Response.AddHeader("pragma", "no-cache");
Response.AddHeader("cache-control", "private");
Response.CacheControl = "no-cache";
Response.Cache.SetExpires(DateTime.Now.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
And then add this piece of javascript in the ASPX source of your secured page within the <head> tag
<script language="javascript" type="text/javascript">
function preventPrevPageReturn()
{
window.history.forward();
}
</script>
And finally call the javascript at the <body> tag at onload event:
<body onload="preventPrevPageReturn()">