aThortoriece23
New Member
I know how to make a DataGrid where you can edit the records, but I was wondering if anyone knows how to make a DataGrid where it is possible to edit all the records at the same time, with one update button? Instead of using the edit/update link for each record you want to change.Such functionality is possible, for sure, but you're not going to be able to do it using the DataGrid. Rather, you'll have to write your own control or something of that nature, I'm afraid.<BR><BR>Now that I think about it, I bet you could do it with the datagrid, using the OnItemCreate event (I think that's the name of it, I don't have the docs in front of me) to dynamically generate the needed HTML, and then adding a Button on the page to "update" the data. But still, you'd be writing a ton of code and would likely be better off starting from scratch. hth