Thursday, November 26, 2009

How to disiable cut, copy, paste and selection operation in TextBox using JS.


use following inbuilt JS function.

oncut="return false"
oncopy="return false"
onpaste="return false"
oncontextmenu="return false"
onselectstart="return false"

No comments: