Login or Sign Up to become a member!

EXPERTS, INFORMATION, IDEAS & KNOWLEDGE

Social bookmarker Add this

ASP.NET: Convert a DataSet to a DataView

From Wiki

Jump to: navigation, search


Summary: A brief example of you you can extract a DataView object from a DataSet

  1. Dim ds As New DataSet  
  2. Dim dv As New DataView  
  3. dv = ds.Tables(0).DefaultView


This Hack is part of the ASP.NET Hacks collection

446 Rating: 1.5/5 (4 votes cast)