Author: vj82reddy | Posted on: 11/18/2010 8:38:27 AM | Views : 935

hi im trying to edit my gridview row in other page where i have controls like textboxes and buttons,radiobuttons.
the requirement is like i need to keep image for my button its not possible with autogenerate edit
so im using one normal button and i want to take these values using querystring not in session.
becoz i have a primary key using that i want to edit record.
plz suggest the code. the below code is working fine for autogenerate edit.
but i want to write the same kind of functionality for my button with image.
---------------------------------------------------------------------------
protected void grdEmployeesEdit_RowEditing(object sender, GridViewEditEventArgs e)
    {
       grdEmployeesEdit.EditIndex = e.NewEditIndex;
       string lid;    
        Label objEmp = (Label)grdEmployeesE ...

Go to the complete details ...