how can I loop through rows in a dataview?
So i might have a dataTable with 100 rows and a dataView with 10 (because of the row filter applied)
how can I loop through these 10 rows?
I know with the .NET Framework version 2.0 there is a DataView.ToTable Method so i could create a new table consisting of the rows in my dataView and then loop through them, but i don't have that privilage at the moment.
Thanks for the help.
Start Free Trial