最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp.net 读取Excel数据,填充DataSet 与GridView代码
时间:2022-06-25 05:06:56 编辑:袖梨 来源:一聚教程网
asp教程.net 读取excel数据,填充dataset 与gridview代码
// 连接字符串
string ph = string.format("upload{0}", name);
string xlspath = server.mappath(ph);
string connstr = "provider=microsoft.jet.oledb.4.0;" + "extended properties="excel 8.0;hdr=no;imex=1";" + "data source=" + xlspath;
string sql_f = "select * from [{0}]";oledbconnection conn = null;
oledbdataadapter da = null;
datatable tblschema = null;
ilisttblnames = null; // 初始化连接,并打开
conn = new oledbconnection(connstr);
conn.open();
//方法二
连接字符串
dim xlspath as string = server.mappath("~/app_data/excelfile.xls") ' 绝对物理路径
dim connstr as string = "provider=microsoft.jet.oledb.4.0;data source=" & xlspath & "; extended properties=excel 8.0;"
' 查询语句
dim sql as string = "select * from [sheet1$]"dim ds as dataset = new dataset()
dim da as oledb.oledbdataadapter = new oledb.oledbdataadapter(sql, connstr)
da.fill(ds) ' 填充dataset' 在这里对dataset中的数据进行操作
' 输出,绑定数据
gridview1.datasource = ds.tables(0)
gridview1.databind()
上面代码是讲了绑定到gridview中的代码
相关文章
- 《燕云十六声》红尘无眼完成图文攻略 12-25
- 《燕云十六声》阴阳如影完成图文攻略 12-25
- 《燕云十六声》悬檐之下四架椽屋图文攻略 12-25
- 《燕云十六声》2024最新公测时间介绍 12-25
- 《燕云十六声》有没有藏宝阁 12-25
- 《燕云十六声》制作公司介绍 12-25