In this article I will explain with an example, how to disable Back Button in Browser after Logout using
AngularJS in ASP.Net Core Razor Pages.
Disabling Browser Back Button will prevent user from navigate to previous page after Logout using Back Button of the browser or the back option in the context menu.
One cannot disable the Browser Back Button functionality only thing that can be done is prevent them.
Razor PageModel (Code-Behind)
Home
The PageModel consists of the following Handler method.
Action method for handling Home GET operation
This Action method gets called when Home Page is refreshed.
public class HomeModel : PageModel
{
public void OnGet()
{
}
}
Logout
The PageModel consists of the following Handler methods.
Action method for handling Logout GET operation
This Action method gets called when the Anchor Link of Home Page is clicked or Logout Page is refreshed.
public class LogoutModel : PageModel
{
public void OnGet()
{
}
}
Disable Browser Back Button implementation
Razor Page (HTML)
Home Razor Page
The HTML Markup of Home Razor Page consists of:
div – For applying
ng-app and
ng-controller AngularJS directives.
The Logout Razor Page also consists of an HTML Anchor tag and its href property is set to name of Home Razor Page.
Disabling Browser Back Button Script
Inside the HTML Markup, first the following script file is inherited.
1. angular.min.js
Inside the
AngularJS Controller, the
timeout function is called which schedules the execution time with delay of 0 (zero) milliseconds.
Inside the timeout function, the $window.history.forward() method is called which navigates the browser forward one step in their history. Whenever Browser Back Button is clicked, this function immediately moves it one step forward.
Finally, the unload event handler is attached to the window using addEventListener method which returns NULL to disable (prevent) the Browser Back Button.
@page
@model Disable_Browser_Back_AngularJS_Core_Razor.Pages.HomeModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script type="text/javascript">
var app = angular.module("MyApp", []);
app.controller("MyController", function ($scope, $window, $timeout) {
$timeout(function () {
$window.history.forward();
}, 0);
$window.addEventListener('unload', function () {
null;
});
});
</script>
</head>
<body>
<div ng-app="MyApp" ng-controller="MyController">
<h3>Login</h3>
<hr />
<a href="/Home">Redirect to Home</a>
</div>
</body>
</html>
Logout Razor Page
The HTML Markup of Logout page consists of an H3 tag for displaying message.
@page
@model Disable_Browser_Back_AngularJS_Core_Razor.Pages.LogoutModel
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script type="text/javascript">
var app = angular.module("MyApp", []);
app.controller("MyController", function ($scope, $window) {
});
</script>
</head>
<body>
<div ng-app="MyApp" ng-controller="MyController">
<h3>Home</h3>
<hr />
<a href="/Login">Redirect to Login</a>
</div>
</body>
</html>
Screenshot
Browser Compatibility
* All browser logos displayed above are property of their respective owners.
Demo
Downloads