2011年1月19日
摘要: public DataSet ExcelToDS(string Path) { string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + Path +";"+"Extended Properties=Excel 8.0;"; OleDbConnection conn = new OleDbConnection(strConn); conn.Open(); string strExcel = ""; OleDbDataAdapter myCommand = null; DataSet ds = nu 阅读全文
posted @ 2011-01-19 11:55 米高佐敦 阅读(276) 评论(0) 推荐(0) 编辑