Excel的导出操作

下面的代码展示了如何将Excel内容显示到GridView中:
aspx代码:

.aspx

.cs代码:
protected void btnImport_Click(object sender, EventArgs e)
        
{
            
string Path = f_path.Value;
            
string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + Path + ";" + "Extended Properties=Excel 8.0;";
            OleDbConnection conn 
= new OleDbConnection(strConn);
            conn.Open();
            
string strExcel = "";
            OleDbDataAdapter myCommand 
= null;
            DataSet ds 
= null;
            strExcel 
= "select * from [sheet1$]";
            myCommand 
= new OleDbDataAdapter(strExcel, strConn);
            ds 
= new DataSet();
            myCommand.Fill(ds, 
"table1");

            gv_list.DataSource 
= ds;
            gv_list.DataBind();

        }

posted on 2006-12-06 12:24  Daniel Pang  阅读(1674)  评论(2编辑  收藏  举报

导航