capturing the enter key on textbox in asp.net for windows ce - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T23:01:04Z http://stackoverflow.com/feeds/question/561782 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/561782/capturing-the-enter-key-on-textbox-in-asp-net-for-windows-ce 0 capturing the enter key on textbox in asp.net for windows ce mehmetserif 2009-02-18T16:15:21Z 2009-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#561813 1 Answer by Eduardo Molteni for capturing the enter key on textbox in asp.net for windows ce Eduardo Molteni 2009-02-18T16:23:45Z 2009-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> &lt;script languaje="javascript"&gt; document.onkeydown = myOnkeydown; function myOnkeydown() { var key = window.event.keyCode; if (key == 13) { //13 is the keycode of the 'Enter' key //do stuff } } &lt;/script&gt; </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>