How we can fetch a textbox value when an enter key is pressed ?
-
Textbox firing when an Enter key is Pressed....giv me a solution dat worked in both iexplorer and firefox. Thankz in advance.
-
Textbox firing when an Enter key is Pressed....giv me a solution dat worked in both iexplorer and firefox. Thankz in advance.
Masood Kochi,SSF wrote:
Textbox firing when an Enter key is Pressed
Firing what? Your question is not clear. Please rephrase it. :)
Navaneeth How to use google | Ask smart questions
-
Textbox firing when an Enter key is Pressed....giv me a solution dat worked in both iexplorer and firefox. Thankz in advance.
You can write the JavaScript Code and Get the Value of TextBox ---- This is Javascript Function that show the Value of Textbox in alert Box when Enter Key is Pressed-------------- function CheckEnter_Onclick(e) { var key; key=(e.which) ? e.which : e.keyCode; if(key==13) { var x= document.getElementById('<%=txt.ClientID %>').value; alert(x); } return true; }