PDA

Click to See Complete Forum and Search --> : datagrid editing


EyeTalion
Sep 19th, 2002, 09:10 AM
I have a web form with a datagrid that is bound to my database. I did this by using the oleDbDataAdapter configuration wizard. The datagrid gets populated on the page_load event. The datagrid only has an ID number field. I want the user to select there ID number and then I want to send them to another page that will automatically fill up with all their information...and from here they can update their data. How do I make the records in the datagrid active?

thanks,
eye

Tryster
Sep 24th, 2002, 04:50 PM
You need to add a Button Column to your DataGrid. You can then trap the DatGrid.ItemCommand event and redirect the user to a page as required.

EyeTalion
Sep 25th, 2002, 07:19 AM
thanks