Click here to Skip to main content
15,887,676 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how can i update data using textbox values when i dont know the index of the row..
How can i do this?
I want to specify in the WHERE condition the row index and not the ID
Posted
Comments
Programm3r 27-Nov-12 9:16am    
Hi - Why do you want to do this?? Furthermore, could you please provide some code?
[no name] 27-Nov-12 11:14am    
We need a better description of the problem becsaue what you have currently is full of holes.
lovitaxxxx 28-Nov-12 5:41am    
I have created a naviation system with first, prew, next and last button to navigate throgh records of the datatable using the index of the row..
AND now i want to modify the data in a specific moment, knowing only the row index i am navigating
can i do this?

1 solution

This is an impossible mission, but we will try to help you.

C#
protected void m_gvClienteStatus_RowUpdating( object sender, GridViewUpdateEventArgs e )
{
    int rowIndex = m_gvClienteStatus.EditIndex;
    GridViewRow row = m_gvClienteStatus.Rows[ e.RowIndex ];
}


this will help?
 
Share this answer
 

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