如何打开excel数据库文件,想必有很多朋友都不清楚吧,下面通过一个简单的例子,实现读取excel数据文件
在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用户要有读写的权限.
更多网页制作信息请查看: 网页制作 |