[导入]ASP.NET中上传并读取Excel文件数据
生活随笔
收集整理的這篇文章主要介紹了
[导入]ASP.NET中上传并读取Excel文件数据
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
首先,創(chuàng)建一個(gè)Web應(yīng)用程序項(xiàng)目,在Web頁中添加一個(gè)DataGrid控件、一個(gè)文件控件和一個(gè)按鈕控件。
<INPUT id="File1" type="file" name="File1" runat="server">
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>
<asp:DataGrid id="DataGrid1" runat="server"></asp:DataGrid>
在代碼視圖中首先導(dǎo)入OleDb命名空間:
using System.Data.OleDb;
在按鈕的單擊事件中輸入如下代碼:
string strPath="c:\\test\\" + DateTime.Now.ToString("yyyyMMddhhmmss") + ".xls";
File1.PostedFile.SaveAs(strPath);
string mystring="Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = '"+ strPath +"';Extended Properties=Excel 8.0";
OleDbConnection cnnxls = new OleDbConnection (mystring);
OleDbDataAdapter myDa =new OleDbDataAdapter("select * from [Sheet1$]",cnnxls);
DataSet myDs =new DataSet();
myDa.Fill(myDs);??
DataGrid1.DataSource=myDs.Tables[0];
DataGrid1.DataBind();
其中C:\test對ASPNET用戶要有讀寫的權(quán)限.
文章來源:http://blog.nwtbb.cn/default.asp?id=314
<INPUT id="File1" type="file" name="File1" runat="server">
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>
<asp:DataGrid id="DataGrid1" runat="server"></asp:DataGrid>
在代碼視圖中首先導(dǎo)入OleDb命名空間:
using System.Data.OleDb;
在按鈕的單擊事件中輸入如下代碼:
string strPath="c:\\test\\" + DateTime.Now.ToString("yyyyMMddhhmmss") + ".xls";
File1.PostedFile.SaveAs(strPath);
string mystring="Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = '"+ strPath +"';Extended Properties=Excel 8.0";
OleDbConnection cnnxls = new OleDbConnection (mystring);
OleDbDataAdapter myDa =new OleDbDataAdapter("select * from [Sheet1$]",cnnxls);
DataSet myDs =new DataSet();
myDa.Fill(myDs);??
DataGrid1.DataSource=myDs.Tables[0];
DataGrid1.DataBind();
其中C:\test對ASPNET用戶要有讀寫的權(quán)限.
文章來源:http://blog.nwtbb.cn/default.asp?id=314
轉(zhuǎn)載于:https://www.cnblogs.com/zoujiaxue/archive/2007/03/24/686342.html
總結(jié)
以上是生活随笔為你收集整理的[导入]ASP.NET中上传并读取Excel文件数据的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 典型的FPGA芯片有哪些,看完这篇文章就
- 下一篇: GBASE数据库安装手册中的一点命令