就是说,我要加载这个.xls的模板,然后把统计图表取到.请问怎么实现的?比如 Sheet1是需要导入的原始数据.sheet2某像统计的数据和图表.  

解决方案 »

  1.   

    C#窗体中嵌入excel的模板
    string strConn = "Data Source=.;Initial Catalog=SuieDB;Integrated Security=True";     protected void Page_Load(object sender, EventArgs e)
        {        SqlConnection cn = new SqlConnection(strConn);
            cn.Open();
            SqlDataAdapter sda = new SqlDataAdapter("select * from Softs", cn);
            DataSet ds = new DataSet();
            sda.Fill(ds, "Softs");
            this.GridView1.DataSource = ds.Tables["Softs"];            this.GridView1.DataSource = ds.Tables[0].DefaultView;
            this.GridView1.DataBind();    }    public DataSet ExecleDs(string filenameurl, string table)
        {
          
            string strConn = "Provider=Microsoft.Jet.OleDb.4.0;" + "data source=" + filenameurl + ";Extended Properties='Excel 8.0; HDR=YES; IMEX=1'";
            OleDbConnection conn = new OleDbConnection(strConn);
            conn.Open();
            DataSet ds = new DataSet();;
            OleDbDataAdapter odda = new OleDbDataAdapter("select * from [Sheet1$]", conn); //Excel表
            odda.Fill(ds, table);
            return ds;
        }
        protected void Button1_Click(object sender, EventArgs e)
        {
            if (FileUpload1.HasFile == false)//HasFile用来检查FileUpload是否有指定文件
            {
                Response.Write("<script>alert('请您选择Excel文件')</script> ");
                return;//当无文件时,返回
            }
            string IsXls = System.IO.Path.GetExtension(FileUpload1.FileName).ToString().ToLower();//System.IO.Path.GetExtension获得文件的扩展名
            if (IsXls != ".xls")
            {
                Response.Write("<script>alert('只可以选择Excel文件')</script>");
                return;//当选择的不是Excel文件时,返回
            }
            SqlConnection cn = new SqlConnection(strConn);
            cn.Open();
            string filename = DateTime.Now.ToString("yyyymmddhhMMss") + FileUpload1.FileName; //获取Execle文件名 DateTime日期函数
            string savePath = Server.MapPath(("~\\upfiles\\") + filename);//Server.MapPath 获得虚拟服务器相对路径
            FileUpload1.SaveAs(savePath);                        //SaveAs 将上传的文件内容保存在服务器上
            DataSet ds = ExecleDs(savePath, filename);           //调用自定义方法
            DataRow[] dr = ds.Tables[0].Select();            //定义一个DataRow数组
            int rowsnum = ds.Tables[0].Rows.Count;
            if (rowsnum == 0)
            {
                Response.Write("<script>alert('Excel表为空表,无数据!')</script>");   //当Excel表为空时,对用户进行提示
            }
            else
            {
                for (int i = 0; i < dr.Length; i++)
                {
                    string author_Code = dr[i]["软件号"].ToString();//软件号 excel列名【名称不能变,否则就会出错】
                    string serial_Code = dr[i]["授权码"].ToString();//授权码 列名 以下类似
                    string sqlcheck = "select count(*) from Softs where AuthorCode='" + author_Code + "'And SerialCode='" + serial_Code + "'"; //检查用户是否存在
                    SqlCommand sqlcmd = new SqlCommand(sqlcheck, cn);
                    int count = Convert.ToInt32(sqlcmd.ExecuteScalar());
                    if (count < 1)
                    {
                        string insertstr = "insert into Softs (AuthorCode,SerialCode) values('" + author_Code + "','" + serial_Code + "')";                    SqlCommand cmd = new SqlCommand(insertstr, cn);
                        try
                        {
                            cmd.ExecuteNonQuery();
                        }
                        catch (MembershipCreateUserException ex) //捕捉异常
                        {
                            Response.Write("<script>alert('导入内容:" + ex.Message + "')</script>");
                        }
                    }
                    else
                    {
                        Response.Write("<script>alert('内容重复!禁止导入');location='default.aspx'</script></script> ");
                        continue;
                    }
                }
                Response.Write("<script>alert('Excle表导入成功!');location='default.aspx'</script>");
            }        cn.Close();
        }
    这是把excel存在数据库里,在显示在页面上的,看看有帮助吗?