Not sure if you are looking for a way without asp, but I just found out about the cut method in JavaScript. To enter, do the following:
<input oncopy='prevent()>
<script>
function prevent()
{
event.preventDefault();
}
</script>
It works for me. Tested on chrome. Also disables copying from the context menu. In addition, this works for the oncut and onpaste methods. However, trying to find a way for ondelete, though.
source
share