首页 > 编程 > .NET > 正文

ASP.NET中上传并读取Excel文件数据

2024-07-10 13:09:55
字体:
来源:转载
供稿:网友


在csdn中,经常有人问如何打开excel数据库文件。本文通过一个简单的例子,实现读取excel数据文件。

首先,创建一个web应用程序项目,在web页中添加一个datagrid控件、一个文件控件和一个按钮控件。

<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>

在代码视图中首先导入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用户要有读写的权限.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表