Populate Data from GridView into TextBoxes

newbeee

Member
Joined
Sep 27, 2007
Messages
19
Programming Experience
Beginner
All of the below action happens on one page:

1. I have a page which display data that pulls from a database in a gridview. The data originally is a string of arrays which I forced through a for loop to become a datatable that display in gridview.
2. Each of the row of data display in gridview has an edit button
3. When button edit (created within each row of gridview using CommandName) is clicked, the data associate with that row need to display in various textboxes in a popuppanel below.

How can I irritate through the data table to find what to display in a txtbox? (my data includes ID FirstName LastName Status) Do you have any example/link that help me get started with populating data from a gridview into txtboxes? I appreciate your help.

Thanks.
 
Back
Top