ASP.NET: Convert a DataSet to a DataView
From Wiki
Summary: A brief example of you you can extract a DataView object from a DataSet
- Dim ds As New DataSet
- Dim dv As New DataView
- dv = ds.Tables(0).DefaultView
This Hack is part of the ASP.NET Hacks collection


