HtmlTextWriter 写文件输出下载csv 导出csv文件

            System.Web.HttpContext curContext = System.Web.HttpContext.Current;
            // IO用于导出并返回excel文件
            System.IO.StringWriter strWriter = null;
            System.Web.UI.HtmlTextWriter htmlWriter = null;

            curContext.Response.Clear();
            curContext.Response.Buffer = true;
            curContext.Response.ContentType = "application/vnd.ms-excel";

            curContext.Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");//指定文件内容部分的编码格式,中文用gb2312

            // curContext.Response.ContentEncoding = System.Text.Encoding.GetEncoding("UTF-8");
            curContext.Response.Charset = "UTF8";
            curContext.Response.AppendHeader("content-disposition", "attachment;filename=\"" + System.Web.HttpUtility.UrlEncode("test", System.Text.Encoding.UTF8) + ".csv\"");//指定另存的文件名及后缀名

            strWriter = new System.IO.StringWriter();
            htmlWriter = new System.Web.UI.HtmlTextWriter(strWriter);
            string sb = "123,456,789\n222sdfsa22,忘sdfdsaf记,特fsadsdf#%……\n";//指定文件的内容(拼字符串成csv文件格式)
            htmlWriter.Write(sb);//将字符串写入流
            //dgExport.DataSource = dtData.DefaultView;
            //dgExport.DataBind();
            返回客户端
            //dgExport.RenderControl(htmlWriter);
            curContext.Response.Write(strWriter.ToString());

            curContext.Response.End();


此部分内容从DataExport 导出excel类中筛选出来。执行后可以直接从浏览器中下载,不用保存文件。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值