解决C# 导出gridview中的数据到excel 时, 全数字时 0 被去掉的问题

本文介绍了一个C#解决方案,用于将GridView数据导出到Excel时确保全数字列保持其前导0。通过设置`mso-number-format`样式为`'@'`,可以防止数字格式化导致的0被自动去掉。
摘要由CSDN通过智能技术生成
 System.IO.StringWriter tw = new System.IO.StringWriter();
                System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw);
                GridView gv = new GridView();
                gv.EnableViewState = false;
                gv.DataSource = tbl;
                gv.DataBind();
                gv.RenderControl(hw);

                string style = @"<style type=""text/css"">td{mso-number-format:'\@';}</style>";

                HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename="+DateTime.Now.ToFileTime()+".xls");
                HttpContext.Current.Response.Charset = "UTF-8";
                HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.Default;
                HttpContext.Current.Response.ContentType = "application/ms-excel";
                Response.Output.Write(style);
                Response.Write(tw.ToString());
                Response.Flush();
                Response.End();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值