Upload Excel file and extract data - asp.net mvc 3

前端 未结 4 491
终归单人心
终归单人心 2021-02-04 14:51

I am wondering how do I extract data out of a 2007 excel file? I am using asp.net mvc 3. My plan is to have a upload section that you choose a file and hit upload. I have no clu

4条回答
  •  無奈伤痛
    2021-02-04 15:12

    The easiest way to read excel spread sheets IMO is to use a DataAdapter and an OleDB connection as shown in this code project sample. The good thing about this is it does not have any dependencies on COM or the MS office libraries.

提交回复
热议问题