Hi
Mouse double click code not working in GridView.
private void dataGridView1_MouseDoubleClick(object sender, MouseEventArgs e)
{
var value = grdPlanning.SelectedRow.Cells[0].Text;
//var value = grdPlanning.SelectedRows[0].Cells[0].ToString();
}
<asp:GridView ID="grdPlanning" class="table table-bordered " runat="server"
OnRowDataBound="gr_RowDataBound" AutoGenerateColumns="true">
</asp:GridView>
Thanks