////////////////////
http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
////////////////////
http://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
////////////////////
<script type="text/javascript">
$(document).ready(function () {
$(document)[0].oncontextmenu = function
() { return false;
}
$(document).mousedown(function (e) {
if (e.button == 2) {
alert('Sorry, This functionality is not enable!');
window.location.href = "Default.aspx";
return false;
} else {
return true;
}
});
});
$(document).keydown(function (event) {
if (event.keyCode == 123) { //
Prevent F12
alert('Sorry, This functionality is not enable!');
window.location.href = "Default.aspx";
return false;
} else if
(event.ctrlKey && event.shiftKey && event.keyCode == 73) { // Prevent Ctrl+Shift+I
alert('Sorry, This functionality is not enable!');
window.location.href = "Default.aspx";
return false;
}
});
No comments:
Post a Comment