摘要: public DataSet ImportFromExcel(string filePath){DataSet ds = new DataSet();string connString = "Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = " + filePath + ";Extended Properties=\"Excel 8.0;HDR=Yes;IMEX=1\"";DataTable table = OleDbHelper.GetExcelTables(connString) 阅读全文
posted @ 2014-03-31 16:27 ATS-IT-MES 阅读(130) 评论(0) 推荐(0) 编辑