首页 > 编程 > .NET > 正文

在ASP.NET访问Excel文件

2024-07-10 12:57:10
字体:
来源:转载
供稿:网友
在asp.net访问excel文件

<%@ page language="c#" %>
<%@ import namespace="system.data" %>
<%@ import namespace="system.data.ado" %>
<script language="c#" runat="server">
protected void page_load(object src, eventargs e)
{
string strconn;
strconn = "provider=microsoft.jet.oledb.4.0;"
+"data source=c://exceltest.xls;"
+"extended properties=excel 8.0;";
adodatasetcommand mycommand = new adodatasetcommand("select * from [sheet1$]", strconn);
dataset mydataset = new dataset();
mycommand.filldataset(mydataset, "excelinfo");
datagrid1.datasource = mydataset.tables["excelinfo"].defaultview;
datagrid1.databind();
}
</script>
<p><asp:label id=label1 runat="server">excel表格内容:</asp:label></p>
<asp:datagrid id=datagrid1 runat="server"/>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表