成都浔兴拉链:跪求在asp中屏蔽键盘windows键解决方案

来源:百度文库 编辑:高校问答 时间:2024/05/02 21:05:06
在asp中屏蔽键盘windows键解决方案

可以是一切能在asp中使用的脚本,及可以在asp中调用的其他文件.

反正只要能实现功能就行~~~

被采纳的答案将追加100分~

//屏蔽键盘
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="0" oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">

//屏蔽win键
<script language="javascript">
<!--
function document.onkeydown()
{
if ( (event.keyCode==91)||(event.keyCode==92))
{
event.keyCode = 0;
event.cancelBubble = true;
return false;
}
}
-->
</script>

能吗?我没听说过。asp的主要程序运行与服务器,不能控制客户端的。