We have many ways to disable the back button
Response.Cache.SetCacheability(HTTPCacheability.NoCache);
Response.Cache.SetAllowResponseInBrowserHistory(false);
or
document.location.replace("url") //in javascript
or
window.history.forward(1); //in Javascript