How can i trap the KayPress and Keydown event using asp.net mobile form.
for example
<script language="javascript" for="window" event="onload()">
document.getElementById("TEST").focus();
function keypress(e)
{
alert(window.event.keycode)
}
function keydown(e)
{
alert(window.event.keycode)
}
document.onkeypress = keypress
document.onkeydown=keydown
</script>
the above code is working fine on IE6.0 but not working on pocket IE 2.0
Thanks
Jasapl Singh
Jay - 27 Nov 2006 06:17 GMT
I think some Pocket PC won't work this options. Can you please try with
latest one.
> How can i trap the KayPress and Keydown event using asp.net mobile form.
> for example
[quoted text clipped - 17 lines]
> Thanks
> Jasapl Singh