禁止保存网页,禁止鼠标的选择和点击操作

1.禁止保存网页的方法

在.aspx页面中加入如下代码:

2.禁止鼠标操作的方法

在标签中加入如下代码:

bottomMargin=”0″ leftMargin=”0″
topMargin=”0″ rightMargin=”0″ oncontextmenu=’return false’ ondragstart=’return false’
onselectstart=’return false’ onselect=’document.selection.empty()’ oncopy=’document.selection.empty()’
onbeforecopy=’return false’


Leave a Comment