ALT Key
C#
2
Posts
2
Posters
0
Views
1
Watching
-
How to know that ALT pressed if control doesn't have an imput focus? Valeria
-
How to know that ALT pressed if control doesn't have an imput focus? Valeria
Hi Valeria, In ASP.NET (Web Development) you can use this codesnippet to detect ALT key bieng pressed:
document.onkeydown = function () { alert (event.altKey + " " +event.keyCode); }
Deepak Kumar Vasudevan http://deepak.portland.co.uk/