• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

MVC下用C#实现Excel导出

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Aspx页面脚本:

function exportxls() {

            window.open("/Common/HomeExport?startdate=" + $("#hidStartTime").val(), "exportxls", null);

        }



C#代码如下:

   public class CommonController

    {

        public void HomeExport()

        {

            StringBuilder sHtml = new StringBuilder(string.Empty);

            //下面这句解决中文乱码

            sHtml.Append("<meta http-equiv=content-type content=application/ms-excel; charset=utf-8/>");

            ……

            //打印表头

            sHtml.Append("<table border=1 width=100%>");

            //打印列名

            sHtml.Append("<tr height=20 align=centerstyle='background-color:yellow'><td>No. </td><td>Project</td><td>Content</td>tr>");

            //循环读取List集合

            ……

            //打印表尾

            sHtml.Append("</table>");

            string filename = "Report";

            //调用输出Excel表的方法

            ExportToExcel("application/ms-excel", filename + ".xls", sHtml.ToString());

        }

 

        public void ExportToExcel(string FileType, string FileName, string ExcelContent)

        {

            System.Web.HttpContext.Current.Response.Charset = "UTF-8";

            System.Web.HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;

            System.Web.HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8).ToString());

            System.Web.HttpContext.Current.Response.ContentType = FileType;

            System.IO.StringWriter tw = new System.IO.StringWriter();

            System.Web.HttpContext.Current.Response.Output.Write(ExcelContent.ToString());

            System.Web.HttpContext.Current.Response.Flush();

            System.Web.HttpContext.Current.Response.End();

        }

    }

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
(八十一)c#Winform自定义控件-时间轴-HZHControls发布时间:2022-07-14
下一篇:
C#的New关键字的几种用法发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap