This is because of browser history, you have to clear history after logout,
for that, I provide you with solutions to disable back function in your web page as below:
1.Disable the page cache using script on server-side. The code is as below:
Response.Buffer = true;
Response.ExpiresAbsolute = DateTime.Now.AddHours(-1);
Response.Expires = 0;
Response.CacheControl = "no-cache";
2.Disable the page cache to let the browser no longer save cache of web pages on client-side as below:
<head>
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
</head>
3.Use javascript on client-side to realize the forward effect, this counteracts the action of user’s clicking back button. See the code below:
<script type="text/javascript">
window.history.forward(1);
</script>
try these and let me know.