<script type="text/javascript">
window.addEventListener('popstate', function (event) {
var stateObject = { id: 1 };history.pushState(stateObject,"",window.location.href);
});
$(function () {
var stateObject = { id: 1 };
history.pushState(stateObject, "", window.location.href);
});
</script>