- DataTable
-
asp.net对DataTable转制通用代码
datatable dt = new datatable(); dt.columns.add(ds.tables[tablename].columns[0].columnname); for (int i = 0; i < ds.tables[tablename].rows.count; i++) { dt.columns.add(ds.tables[tablename].rows[i][0].tostring()); } for (int i = 0; i < ds.tables[tablenam...
ASP.NET 2.0的DataTable小兵变大将
我们先看一段web service的代码。 [webmethod] public datatable getinfo() ...{ oledbconnection nwindconn = new oledbconnection( "provider=microsoft.jet.oledb.4.0;" + "data source=d:\northwind\northwind.mdb;"); &n...
ASP.NET 2.0中DataTable使用
我们先看一段web service的代码。 [webmethod] public datatable getinfo() ...{ oledbconnection nwindconn = new oledbconnection( "provider=microsoft.jet.oledb.4.0;" + "data source=d:\northwind\northwind.mdb;"); oledbcommand selectcmd = new oledbcommand("s...