1. oncontextmenu=window.event.returnvalue=false 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于table
2. <body onselectstart=return false> 取消选取、防止复制
3. onpaste=return false 不准粘贴
4. oncopy=return false; oncut=return false; 防止复制
5. <link rel=shortcut icon href=favicon.ico> ie地址栏前换成自己的图标
6. <link rel=bookmark href=favicon.ico> 可以在收藏夹中显示出你的图标
7. <input style=ime-mode:disabled> 关闭输入法
8. 永远都会带着框架
<script language=javascript><!--
if (window == top)top.location.href = frames.htm; //frames.htm为框架网页
// --></script>
9. 防止被人frame
<script language=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></script>
10. <noscript><iframe src=*.html></iframe></noscript> 网页将不能被另存为
11. <input type=button value=查看网页源代码
onclick=window.location = 'view-source:'+ 'http://www.csdn.net/'>
12. 怎样通过asp的手段来检查来访者是否用了代理
<% if request.servervariables(http_x_forwarded_for)<> then
response.write <font color=#ff0000>您通过了代理服务器,& _
真实的ip为&request.servervariables(http_x_forwarded_for)
end if
%>