足球游戏_中国足彩网¥体育资讯$

asp.net读取excel中的数据并绑定在gridview
来源:易贤网 阅读:578 次 日期:2014-08-28 10:33:23
温馨提示:易贤网小编为您整理了“asp.net读取excel中的数据并绑定在gridview”,方便广大网友查阅!

这篇文章主要介绍了asp.net读取excel中的数据并绑定在gridview上的方法,需要的朋友可以参考下

前台label,DropDownList,gridview控件

aspx.cs核心代码:

代码如下:

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;

}

}

以上是插入07以前版本excel

如果07版本以后只需要做小小修改

代码如下:

string strCon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + lable + ";Extended Properties=Excel 12.0;";

中国足彩网信息请查看IT技术专栏

中国足彩网信息请查看网络编程
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 足球游戏_中国足彩网¥体育资讯$ 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:易贤网
云南网警报警专用图标