获取Excel工作表的列名称

获取Excel工作表的列名称

本文介绍了获取Excel工作表的列名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HI ..

i希望在asp.net中获取excel表的列名,

我应该怎么做?

谢谢

HI..
i want to fetch column names of excel sheet in asp.net,
how should i do this?
thanks

推荐答案


protected void btnUpload_Click(object sender, EventArgs e)
    {
        OleDbConnection objConnection = new OleDbConnection(ConnectionString());
        objConnection.Open();
        OleDbCommand objCmdSelect = new OleDbCommand("SELECT * FROM [" + SheetName + "






这里输入 SheetName ExcelFileLocation 它会将该表的所有数据检索到数据表中,数据表的列名将是表的列名。



[]



投票 接受答案 如果有帮助。



Here input the SheetName and ExcelFileLocation it will retrieve all the data of that sheet into datatable, the column name of the datatable will be the column name of the Sheet.

http://www.codeguru.com/forum/archive/index.php/t-388883.html[^]

Please Vote or Accept Answer if it Helped.


这篇关于获取Excel工作表的列名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 21:18