Es un tema bien difundido.... pero bueno, tenia un ejemplo entre mis recursos webs....
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> function noControl(e){
var key = (document.all) ? e.keyCode : e.which;
if(e.ctrlKey) return false;
}
<form name="form" method="post"> <input type="text" name="clave" oncontextmenu="return false;" onkeypress="return noControl(event);" /><br /> <input type="text" name="confirmar" oncontextmenu="return false;" onkeypress="return noControl(event);" /><br />
con
oncontextmenu="return false;" prohibes que den click derecho sobre los inputs.
y con
onkeypress="return noControl(event);" prohibes que presionen la tecla "Control" sobre los inputs.
Suerte.