Introduction:
In this article i will explain how you
can copy DataRow to DataTable in
asp.net.
C#.Net Code to copy DataRow to
DataTable in asp.net
DataRow[] dr= new
DataRow[10];
DataTable dt= new
DataTable();
VB.Net Code to copy DataRow to DataTable in asp.net
Dim dr As DataRow() = New DataRow(9) {}
Dim dt As New DataTable()
dt.LoadDataRow(dr, True)
0 comments:
Post a Comment