arunglobal
Programmer
Hi Pals,
I am n need to Block Print screen button in my web application client side (ASP.Net)
iam using the below script to Block CTRL keys.but unable to trap "Print Scrn"
/*Controls the CTRL keys*/
function keyWhat(e)
{
if (window.event.ctrlKey)
{
window.event.cancelBubble = true;
window.event.returnValue = false;
return false;
}
}
document.onkeydown=keyWhat;
Innovative ideas arfe welcome...
Tq n Advance
I am n need to Block Print screen button in my web application client side (ASP.Net)
iam using the below script to Block CTRL keys.but unable to trap "Print Scrn"
/*Controls the CTRL keys*/
function keyWhat(e)
{
if (window.event.ctrlKey)
{
window.event.cancelBubble = true;
window.event.returnValue = false;
return false;
}
}
document.onkeydown=keyWhat;
Innovative ideas arfe welcome...
Tq n Advance