capturing the enter key on textbox in asp.net for windows ce - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T23:01:04Zhttp://stackoverflow.com/feeds/question/561782http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/561782/capturing-the-enter-key-on-textbox-in-asp-net-for-windows-ce0capturing the enter key on textbox in asp.net for windows cemehmetserif2009-02-18T16:15:21Z2009-02-18T16:23:45Z
<p>Hi everybody,</p>
<p>I want to capture the enter key on text for windows ce msie6.0 but there is no button for that so i cannot use default button property for the form tag itself. What else i can do to capture the Enter key?</p>
<p>Thanks..</p>
http://stackoverflow.com/questions/561782/capturing-the-enter-key-on-textbox-in-asp-net-for-windows-ce/561813#5618131Answer by Eduardo Molteni for capturing the enter key on textbox in asp.net for windows ceEduardo Molteni2009-02-18T16:23:45Z2009-02-18T16:23:45Z<p>I have used this function javascript in IE6, not sure if it will work in Windows CE</p>
<pre><code> <script languaje="javascript">
document.onkeydown = myOnkeydown;
function myOnkeydown()
{
var key = window.event.keyCode;
if (key == 13) { //13 is the keycode of the 'Enter' key
//do stuff
}
}
</script>
</code></pre>
<p>Edit: This function captures the input in all fields. You can plug it to the textbox of your choice if you like.</p>