Click here to Skip to main content
15,886,806 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I am new to Asp.net but i want to implement CellClick event for asp's GridView ,
like in windows application "dataGridView1_CellClick()".
Posted

Use this on GridViewSelected Index changed event
where Cells[1] orCells[2] defined the data cell you want to use.

HTML
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
    {
        GridViewRow row = GridView1.SelectedRow;
        string your_data = row.Cells[1].Text;
    }
 
Share this answer
 
This is grid view which was i want...

C#
<asp:gridview id="gridView" runat="server" autogenerateselectbutton="True" xmlns:asp="#unknown">
                onselectedindexchanged="gridView_SelectedIndexChanged">
            </asp:gridview>


then bind it with database


then

C#
protected void gridView_SelectedIndexChanged(object sender, EventArgs e)
   {
       lblID.Text = gridView.SelectedRow.Cells[1].Text.ToString();
       lblName.Text = gridView.SelectedRow.Cells[2].Text.ToString();
   }


for ref please see below link...

http://www.dotnetfunda.com/articles/article442-how-to-get-the-values-of-selected-row-from-a-gridview-using-aspnet.aspx[^]
 
Share this answer
 
Just read out MSDN[^]
 
Share this answer
 
Hello

U do not found the cell click event in grid view.
But u can use the link control or html link for fired the particular event.
Gridview provides the RowCommand to fetch any event of child control.
Or Find the event bubbling concept in Asp.net

Thanks
Harshad
 
Share this answer
 
Comments
R_Mahesh 3-Dec-12 5:33am    
u have any example please ...??

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900