c#匯入excel 綁定資料 repeat為例子

來源:互聯網
上載者:User

標籤:style   blog   color   檔案   資料   os   

先讀取Excel檔案並存到dataset 

 1 public DataSet ExcelToDataTable(string filename, string strsheetname) 2     { 3         try 4         { 5             //源的定義 6             string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + filename + ";" + "Extended Properties=‘Excel 8.0;HDR=Yes;IMEX=1‘;"; 7  8             //Sql語句 9             string strExcel = string.Format("select * from [{0}$]", strsheetname);10             //string strExcel = "select * from   [sheet1$]";11 12             //定義存放的資料表13             DataSet ds = new DataSet();14 15             //串連資料來源16             OleDbConnection conn = new OleDbConnection(strConn);17 18             conn.Open();19 20             //適配到資料來源21             OleDbDataAdapter adapter = new OleDbDataAdapter(strExcel, strConn);22             adapter.Fill(ds, strsheetname);23 24             conn.Close();25 26             //return ds.Tables[strsheetname];27             return ds;28         }29         catch (Exception err)30         {31             throw new Exception("資料繫結Excel失敗!失敗原因:" + err.Message);32 33         }  34     }

然後綁定:

1 string fileName = fileUpload.PostedFile.FileName;2 DataSet ds = ExcelToDataTable(fileName, "sheet1");3 4 5 rptTab.DataSource = ds.Tables[0];6 rptTab.DataBind();

需要注意的是    連接字串中 

HDR =  Yes  意思是把讀取資料的第一行作為資料欄位綁定,預設就是YES  不需要的可以把這個設定為NO
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.