zoukankan      html  css  js  c++  java
  • MVC导出Excle

     Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.Application

    ();
                    app.Workbooks.Add();
           

                    Microsoft.Office.Interop.Excel.Worksheet sheet = app.ActiveSheet;
                    sheet.Cells[5, "B"] = "会员卡号";
                    sheet.Cells[5, "C"] = "姓名";
                    sheet.Cells[5, "D"] = "性别";
                    sheet.Cells[5, "E"] = "电话";
                    sheet.Cells[5, "F"] = "会员等级";
                    sheet.Cells[5, "G"] = "登记时间";
                    //sheet.get_Range(sheet.Cells[5, "E"]).set_ColumnWidth(60);
                    //sheet.get_Range(sheet.Cells[5, "G"]).set_ColumnWidth(60);
                    int rowIndex = 5;
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        rowIndex++;
                        sheet.Cells[rowIndex, "B"] = dt.Rows[i]["MC_CardID"].ToString();
                        sheet.Cells[rowIndex, "C"] = dt.Rows[i]["MC_Name"].ToString();
                        var Sex = "男";
                        if (int.Parse(dt.Rows[i]["MC_Sex"].ToString()) == 2)
                        {
                            Sex = "女";
                        }
                        sheet.Cells[rowIndex, "D"] = Sex;
                        sheet.Cells[rowIndex, "E"] = dt.Rows[i]["MC_Mobile"].ToString();
                        sheet.Cells[rowIndex, "F"] = dt.Rows[i]["CL_LevelName"].ToString();
                        sheet.Cells[rowIndex, "G"] = dt.Rows[i]["MC_CreateTime"].ToString();
                    }
                    Response.Clear();
                    Response.Buffer = true;
                    Response.AppendHeader("Content-Disposition", "attachment;filename=" + DateTime.Now.ToString

    ("yyyyMMddhhmmss") + ".xlsx");
                    Response.ContentEncoding = System.Text.Encoding.UTF8;
                    Response.ContentType = "application/vnd.ms-excel";

                    return Json(true, JsonRequestBehavior.AllowGet);
                }
                catch (Exception e)
                {
                    return RedirectToAction("Index", "Error", e);
                }

            }

  • 相关阅读:
    LR 两种录制:html与url
    性能测试心得之一
    杂记
    基于 python 的接口测试框架
    POJ3579 Median
    洛谷P4035 [JSOI2008]球形空间产生器
    洛谷P2455 [SDOI2006]线性方程组
    POJ2393 Yogurt factory
    洛谷P3763 [TJOI2017]DNA
    洛谷P2234 [HNOI2002]营业额统计
  • 原文地址:https://www.cnblogs.com/yf1019091807/p/5096393.html
Copyright © 2011-2022 走看看