Putting a gridview row in edit mode programmatically

asp.netgridview

How do I put a gridview row in edit mode programmatically?

Best Answer

Set the EditIndex property to the appropriate row and then ReBind the GridVIew again to it's DataSource.

Hope this helps.

Related Topic