Hi,
How to set Gridview to edit mode on key press of ENTER KEY.Can anyone help me
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Joseph KPosted Feb 11, 2017, 1:00 AM
Prakash ReddyPosted Feb 10, 2017, 7:15 AM
In asp.netput the text box in gridview and bind data to text box and put default enabled="false";in each text boxIn c#{if (e.KeyCode == Keys.Enter)
{//enabletextbox here//textbox1.enabled="true";
}