Insert Focus on New Inserted Record inC#
how to Insert Focus on New Inserted Record on grid
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.
Akkiraju IvaturiPosted Sep 17, 2012, 11:06 PM
Sukesh MarlaPosted Sep 17, 2012, 11:02 AM
TextBox m=MyGridView.Rows[IntIndex].FindControl("MyTextbox") as TextBox;
if(m!=null)
{
m.Focus();
}
Hope it helped.
Check answer as correct if it helped