时间:2016-02-16 00:19 来源: 我爱IT技术网 作者:佚名
欢迎您访问我爱IT技术网,今天小编为你分享的编程技术是:【asp.net读取excel中的数据并绑定在gridview】,下面是详细的讲解!
asp.net读取excel中的数据并绑定在gridview
using System.Data.OleDb;//需要引入命名
public void Excel_Click(object sender, EventArgs e)
{
if (this.AttachmentFile.Value=="" && this.Label1.Text=="" && DropDownList2.SelectedValue=="")
{
Response.Write("<script>window.alert('请选择要导入的文件')</script>");
}
if (this.AttachmentFile.Value !="" && this.DropDownList2.SelectedValue=="")
{
HttpFileCollection files=HttpContext.Current.Request.Files;
HttpPostedFile postedFile=files[0];
fileName=System.IO.Path.GetFileName(postedFile.FileName);
if (fileName !="")
{
postedFile.SaveAs("\\\\localhost\\文件夹\\" + fileName);
}
string strConn;
strConn="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + "\\\\localhost\\文件夹\\" + fileName + ";Extended Properties=Excel 8.0;";//this.AttachmentFile.Value.ToString()
OleDbConnection conn=new OleDbConnection(strConn);
conn.Open();
DataTable sheetNames=conn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
foreach (DataRow dr in sheetNames.Rows)
{
DropDownList2.Items.Add(dr[2].ToString());
}
this.Label1.Text="\\\\localhost\\文件夹\\" + fileName;//this.AttachmentFile.Value.ToString();
conn.Close();
}
if (this.Label1.Text.ToString() !="" && this.DropDownList2.SelectedValue !="")// && this.DropDownList1.SelectedValue.ToString() !="全部"
{
//绑定到gridview
GridView1.DataSource=createDataSource(DropDownList2.SelectedValue.ToString(), this.Label1.Text.ToString());//, this.DropDownList1.SelectedValue.ToString()
GridView1.DataBind();
}
}
//以Excel为数据源获取数据集
private DataSet createDataSource(string select, string lable)
{
string strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + lable + ";Extended Properties=Excel 8.0;";
string strsql="select 登记号码,姓名,日期,签到时间,签退时间,部门 from [" + select + "] order by 部门,日期,姓名";//excel表格的字段
OleDbConnection conn=new OleDbConnection(strCon);
OleDbDataAdapter da=new OleDbDataAdapter(strsql, conn);
try
{
conn.Open();
DataSet ds=new DataSet();
da.Fill(ds);
conn.Close();
return ds;
}
catch (Exception e)
{
Response.Write("<script>window.alert('没有数据,或者" + e.Message + "')</script>");
return null;
}
}
关于asp.net读取excel中的数据并绑定在gridview的用户互动如下:
相关问题:
答: >>详细
相关问题:
答: >>详细
相关问题:
答: >>详细
- 【asp】asp.net url重写浅谈-net-url重写
- 【DataSet】DataSet、DataTable、DataRow区别详解
- 【asp】asp.net 动态添加多个用户控件-net-动态添
- 【ASP】ASP.NET中内嵌页面代码的一个问题-NET-内
- 【As】Asp.net中的页面乱码的问题-sp--pn-ne-et
- 【创建】ASP.NET Web API教程 创建域模型的方法详
- 【Asp】Asp.net 页面调用javascript变量的值-net-
- 【ASP】ASP.NET 5升级后如何删除旧版本的DNX-NET5
- 【404页面】ASP.NET设置404页面返回302HTTP状态码
- 【asp】asp.net开发中常见公共捕获异常方式总结(
- 评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)
-
