I write a web application in ASP .NET MVC which will be used only by authorized users. I will configure machines(PCs, tablets) they will use. I need to protect personal data in webapplication from stealing it. I am obligated by law to prevent those situations.
I already wrote keylogger detecting PrintScreen and sending me info about user to my mail when he uses. I will block unused USB ports, log user actions inside WebApplication and few other things.
But it is not enough I need to void/turn off right mouse button click and ctrl+c combination. It is hard to find information how to do this globally for the site.
Question: How to turn off right click and ctrl+c behaviour in ASP .NET MVC WebApplication