FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

本论坛已关闭(禁止注册、发帖和回复)
请移步 三石和他的朋友们

FineUI首页 WebForms - MVC & Core - JavaScript 常见问题 - QQ群 - 十周年征文活动

FineUI(开源版) 下载源代码 - 下载空项目 - 获取ExtJS - 文档 在线示例 - 版本更新 - 捐赠作者 - 教程

升级到 ASP.NET Core 3.1,快、快、快! 全新ASP.NET Core,比WebForms还简单! 欢迎加入【三石和他的朋友们】(基础版下载)

搜索
查看: 1815|回复: 0
打印 上一主题 下一主题

gridview 输出EXCEL 出错

[复制链接]
跳转到指定楼层
楼主
发表于 2013-10-16 08:28:21 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
       protected void btnOut_Click(object sender, EventArgs e)
        {
            //Export("application/ms-excel", "nd69rpt.xls");
            Grid1.AllowPaging = false;//取消分页,使GridView显示全部数据.
            Grid1.DataBind();//重新绑定.
            Response.Clear();
            Response.Charset = "GB2312";
            Response.AppendHeader("Content-Disposition", "attachment;filename= " + Server.UrlEncode("导出.xls"));
            Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
            Response.ContentType = "application/ms-excel";//设置输出文件类型为excel文件.
            this.EnableViewState = false;
            System.Globalization.CultureInfo myCItrad = new System.Globalization.CultureInfo("ZH-CN", true);
            System.IO.StringWriter stringWrite = new System.IO.StringWriter(myCItrad);
            System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
            Grid1.RenderControl(htmlWrite);
            Response.Write(stringWrite.ToString());
            Response.Write(@"<style> .text { mso-number-format:\@; } </script> ");
            Response.End();
            Grid1.AllowPaging = true;
        }     运行到 Response.End() 报错,请大家看看是么问题

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|FineUI 官方论坛 ( 皖ICP备2021006167号-1 )

GMT+8, 2024-11-27 18:52 , Processed in 0.044375 second(s), 18 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表