FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

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

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

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

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

搜索
查看: 3082|回复: 2
打印 上一主题 下一主题

动态创建的grid,导出excel怎么没有表头

[复制链接]
跳转到指定楼层
楼主
发表于 2013-6-12 21:33:01 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
动态创建的grid,导出excel怎么没有表头

本帖子中包含更多资源

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

x
沙发
发表于 2013-6-15 18:28:38 | 只看该作者
  1. /// <summary>
  2.         /// FineUI.Grid导出Excel
  3.         /// </summary>
  4.         /// <param name="g">ExtApNet.Grid</param>
  5.         /// <param name="FileName">文件名</param>
  6.         public static void CreateExcelFineUI(FineUI.Grid g, string FileName)
  7.         {
  8.             HttpContext.Current.Response.ClearContent();
  9.             HttpContext.Current.Response.AddHeader("content-disposition", "attachment; filename=" + HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8) + ".xls");
  10.             HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");//设置输出流为简体中文  
  11.             HttpContext.Current.Response.ContentType = "application/excel";
  12.             HttpContext.Current.Response.Write(GetGridTableHtml(g));
  13.             HttpContext.Current.Response.End();
  14.         }

  15.         /// <summary>
  16.         /// 获取数据,在CreateExcelFineUI方法中写入数据
  17.         /// </summary>
  18.         /// <param name="grid">FineUI.Grid</param>
  19.         /// <returns></returns>
  20.         private static string GetGridTableHtml(FineUI.Grid grid)
  21.         {
  22.             StringBuilder sb = new StringBuilder();
  23.             sb.Append(" <html xmlns:o="urn:schemas-microsoft-com:office:office"");
  24.             sb.Append("xmlns:x="urn:schemas-microsoft-com:office:excel"");
  25.             sb.Append("xmlns="http://www.w3.org/TR/REC-html40"");
  26.             sb.Append(" <head> <meta http-equiv='Content-Type' content='text/html; charset=gb2312'>");
  27.             sb.Append(" <style>");
  28.             sb.Append(".xl26");
  29.             sb.Append(" {mso-style-parent:style0;");
  30.             sb.Append(" font-family:"Times New Roman", serif;");
  31.             sb.Append(" mso-font-charset:0;");
  32.             sb.Append(" mso-number-format:"@";}");
  33.             sb.Append(" </style>");
  34.             sb.Append(" <xml>");
  35.             sb.Append(" <x:ExcelWorkbook>");
  36.             sb.Append("  <x:ExcelWorksheets>");
  37.             sb.Append("  <x:ExcelWorksheet>");
  38.             sb.Append("    <x:Name>Sheet1 </x:Name>");
  39.             sb.Append("    <x:WorksheetOptions>");
  40.             sb.Append("    <x:DefaultRowHeight>285 </x:DefaultRowHeight>");
  41.             sb.Append("    <x:Selected/>");
  42.             sb.Append("    <x:Panes>");
  43.             sb.Append("      <x:Pane>");
  44.             sb.Append("      <x:Number>3 </x:Number>");
  45.             sb.Append("      <x:ActiveCol>1 </x:ActiveCol>");
  46.             sb.Append("      </x:Pane>");
  47.             sb.Append("    </x:Panes>");
  48.             sb.Append("    <x:ProtectContents>False </x:ProtectContents>");
  49.             sb.Append("    <x:ProtectObjects>False </x:ProtectObjects>");
  50.             sb.Append("    <x:ProtectScenarios>False </x:ProtectScenarios>");
  51.             sb.Append("    </x:WorksheetOptions>");
  52.             sb.Append("  </x:ExcelWorksheet>");
  53.             sb.Append("  <x:WindowHeight>6750 </x:WindowHeight>");
  54.             sb.Append("  <x:WindowWidth>10620 </x:WindowWidth>");
  55.             sb.Append("  <x:WindowTopX>480 </x:WindowTopX>");
  56.             sb.Append("  <x:WindowTopY>75 </x:WindowTopY>");
  57.             sb.Append("  <x:ProtectStructure>False </x:ProtectStructure>");
  58.             sb.Append("  <x:ProtectWindows>False </x:ProtectWindows>");
  59.             sb.Append(" </x:ExcelWorkbook>");
  60.             sb.Append(" </xml>");
  61.             sb.Append("");
  62.             sb.Append(" </head> <body> <table align="center" style='border-collapse:collapse;table-layout:fixed' border="1">");

  63.             //sb.Append("<table cellspacing="0" rules="all" border="1" style="border-collapse:collapse;">");

  64.             sb.Append("<tr>");
  65.             foreach (FineUI.GridColumn column in grid.Columns)
  66.             {
  67.                 sb.AppendFormat("<td>{0}</td>", column.HeaderText);
  68.             }
  69.             sb.Append("</tr>");

  70.             foreach (FineUI.GridRow row in grid.Rows)
  71.             {
  72.                 sb.Append("<tr>");
  73.                 foreach (object value in row.Values)
  74.                 {
  75.                     string html = value.ToString();
  76.                     // 处理CheckBox
  77.                     if (html.Contains("box-grid-static-checkbox"))
  78.                     {
  79.                         if (html.Contains("box-grid-static-checkbox-uncheck"))
  80.                         {
  81.                             html = "×";
  82.                         }
  83.                         else
  84.                         {
  85.                             html = "√";
  86.                         }
  87.                     }

  88.                     // 处理图片
  89.                     if (html.Contains("<img"))
  90.                     {
  91.                         string prefix = HttpContext.Current.Request.Url.AbsoluteUri.Replace(HttpContext.Current.Request.Url.AbsolutePath, "");
  92.                         html = html.Replace("src="", "src="" + prefix);
  93.                     }

  94.                     sb.AppendFormat("<td>{0}</td>", html);
  95.                 }
  96.                 sb.Append("</tr>");
  97.             }

  98.             sb.Append("</table>");

  99.             return sb.ToString();
  100.         }
  101.         #endregion
复制代码
以上是用FineUI原先的导出,以下是重新写的,可以自定义表头。
  1. /// <summary>
  2.         /// DataSet导出Excel
  3.         /// </summary>
  4.         /// <param name="ds">要导出的DataSet</param>
  5.         /// <param name="arrTitle">列标题,若为null,则直接取dataset列标题</param>
  6.         /// <param name="FileName">文件名</param>
  7.         public static void CreateExcelFineUI(DataSet ds, string[] arrTitle, string FileName)
  8.         {
  9.             HttpContext.Current.Response.ClearContent();
  10.             HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8) + ".xls");
  11.             HttpContext.Current.Response.Charset = "GB2312";
  12.             HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");//设置输出流为简体中文  
  13.             HttpContext.Current.Response.ContentType = "application/ms-excel";
  14.             StringBuilder sb = new StringBuilder();
  15.             sb.Append(" <html xmlns:o="urn:schemas-microsoft-com:office:office"");
  16.             sb.Append("xmlns:x="urn:schemas-microsoft-com:office:excel"");
  17.             sb.Append("xmlns="http://www.w3.org/TR/REC-html40"");
  18.             sb.Append(" <head> <meta http-equiv='Content-Type' content='text/html; charset=gb2312'>");
  19.             sb.Append(" <style>");
  20.             sb.Append(".xl26");
  21.             sb.Append(" {mso-style-parent:style0;");
  22.             sb.Append(" font-family:"Times New Roman", serif;");
  23.             sb.Append(" mso-font-charset:0;");
  24.             sb.Append(" mso-number-format:"@";}");
  25.             sb.Append(" </style>");
  26.             sb.Append(" <xml>");
  27.             sb.Append(" <x:ExcelWorkbook>");
  28.             sb.Append("  <x:ExcelWorksheets>");
  29.             sb.Append("  <x:ExcelWorksheet>");
  30.             sb.Append("    <x:Name>Sheet1 </x:Name>");
  31.             sb.Append("    <x:WorksheetOptions>");
  32.             sb.Append("    <x:DefaultRowHeight>285 </x:DefaultRowHeight>");
  33.             sb.Append("    <x:Selected/>");
  34.             sb.Append("    <x:Panes>");
  35.             sb.Append("      <x:Pane>");
  36.             sb.Append("      <x:Number>3 </x:Number>");
  37.             sb.Append("      <x:ActiveCol>1 </x:ActiveCol>");
  38.             sb.Append("      </x:Pane>");
  39.             sb.Append("    </x:Panes>");
  40.             sb.Append("    <x:ProtectContents>False </x:ProtectContents>");
  41.             sb.Append("    <x:ProtectObjects>False </x:ProtectObjects>");
  42.             sb.Append("    <x:ProtectScenarios>False </x:ProtectScenarios>");
  43.             sb.Append("    </x:WorksheetOptions>");
  44.             sb.Append("  </x:ExcelWorksheet>");
  45.             sb.Append("  <x:WindowHeight>6750 </x:WindowHeight>");
  46.             sb.Append("  <x:WindowWidth>10620 </x:WindowWidth>");
  47.             sb.Append("  <x:WindowTopX>480 </x:WindowTopX>");
  48.             sb.Append("  <x:WindowTopY>75 </x:WindowTopY>");
  49.             sb.Append("  <x:ProtectStructure>False </x:ProtectStructure>");
  50.             sb.Append("  <x:ProtectWindows>False </x:ProtectWindows>");
  51.             sb.Append(" </x:ExcelWorkbook>");
  52.             sb.Append(" </xml>");
  53.             sb.Append("");
  54.             sb.Append(" </head> <body> <table align="center" style='border-collapse:collapse;table-layout:fixed' border="1">");
  55.             sb.Append("<tr><td colspan="" + Convert.ToString(ds.Tables[0].Columns.Count) + "" align="center"><b>" + FileName + "</b></td></tr>");

  56.             sb.Append("<tr>");
  57.             foreach (string strColumnTitle in arrTitle)
  58.             {
  59.                 sb.AppendFormat("<td><center>{0}</center></td>", strColumnTitle);
  60.             }
  61.             sb.Append("</tr>");

  62.             for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
  63.             {
  64.                 sb.Append(" <tr>");
  65.                 for (int j = 0; j < ds.Tables[0].Columns.Count; j++)
  66.                 {
  67.                     sb.Append(" <td><center>" + ds.Tables[0].Rows[i][j].ToString() + "</center></td>");
  68.                 }
  69.                 sb.Append(" </tr>");
  70.             }

  71.             sb.Append("</table>");
  72.             HttpContext.Current.Response.Write(sb.ToString());
  73.             HttpContext.Current.Response.End();
  74.         }
复制代码
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-28 18:53 , Processed in 0.047593 second(s), 19 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

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