【问题标题】:Exporting Gridview to excel without gridlines将 Gridview 导出到没有网格线的 excel
【发布时间】:2014-01-10 07:30:43
【问题描述】:

我使用这段代码将datagridview导出到excel

HtmlForm form = new HtmlForm();
Response.Clear();
Response.Buffer = true;
string fileName = "TRAIL" + "[" + DatefromTxtBox.Text.Replace("/", "") + "_" + DatetoTxtBox.Text.Replace("/", "") + "]" + ".xls";
Response.AddHeader("content-disposition", "attachment;filename=" + fileName);
Response.Charset = "";
Response.ContentType = "application/vnd.ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
AuditTrailGV.AllowPaging = false;
AuditTrailGV.DataSource = (DataSet)ViewState["audit"];
AuditTrailGV.DataBind();
form.Controls.Add(AuditTrailGV);
this.Controls.Add(form);
form.RenderControl(hw);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();

问题是这段代码还捕获了我的 gridview 的格式/边框

这里是示例屏幕截图

这是我在 asp.net 中的网格视图

这就是我的 Excel 中出现的内容

正如你所看到的,它像 gridview 一样转换了所有的行,我不希望它发生,如果我只能保留只有数据的行的网格线,如果不可能,删除所有网格线..

有什么帮助吗?我真的不喜欢我的 Excel 中的那些网格线

【问题讨论】:

    标签: c# excel gridview export asp.net-2.0


    【解决方案1】:

    VB

    Public Overrides Sub VerifyRenderingInServerForm(control As Control)
        'base.VerifyRenderingInServerForm(control);
        'This remains empty
    End Sub
    
    Protected Sub btnExcel_Click(sender As Object, e As ImageClickEventArgs) Handles btnExcel.Click
    
        Response.Clear()
        Response.AddHeader("content-disposition", "attachment;filename=FileName.xls")
        Response.Charset = ""
        Response.Cache.SetCacheability(HttpCacheability.NoCache)
        Response.ContentType = "application/vnd.ms-excel"
    
        Dim stringWrite As New System.IO.StringWriter()
        Dim htmlWrite As System.Web.UI.HtmlTextWriter = New HtmlTextWriter(stringWrite)
    
        htmlWrite.Write("<html xmlns:o=""urn:schemas-microsoft-com:office:office"" ")
        htmlWrite.Write("xmlns:x=""urn:schemas-microsoft-com:office:excel"" ")
        htmlWrite.Write("xmlns=""http://www.w3.org/TR/REC-html40""> ")
        htmlWrite.Write("<head> ")
        htmlWrite.Write("<!--[if gte mso 9]><xml> ")
        htmlWrite.Write("<x:ExcelWorkbook> ")
        htmlWrite.Write("<x:ExcelWorksheets> ")
        htmlWrite.Write("<x:ExcelWorksheet> ")
        htmlWrite.Write("<x:Name>Sheet1</x:Name> ")
        htmlWrite.Write("<x:WorksheetOptions> ")
        htmlWrite.Write("<x:Selected/> ")
        htmlWrite.Write("<x:ProtectContents>False</x:ProtectContents> ")
        htmlWrite.Write("<x:ProtectObjects>False</x:ProtectObjects> ")
        htmlWrite.Write("<x:ProtectScenarios>False</x:ProtectScenarios> ")
        htmlWrite.Write("</x:WorksheetOptions> ")
        htmlWrite.Write("</x:ExcelWorksheet> ")
        htmlWrite.Write("</x:ExcelWorksheets> ")
        htmlWrite.Write("</x:ExcelWorkbook> ")
        htmlWrite.Write("</xml><![endif]--> ")
        htmlWrite.Write("</head>")
        htmlWrite.WriteLine("")
    
        gridView.HeaderStyle.Reset()
        gridView.FooterStyle.Reset()
        gridView.AlternatingRowStyle.Reset()
        gridView.RowStyle.Reset()
    
        gridView.BackColor = Color.Transparent
        gridView.GridLines = GridLines.None
        gridView.RenderControl(htmlWrite)
    
        Response.Write(stringWrite.ToString())
        Response.[End]()
    End Sub
    

    C#

    public override void VerifyRenderingInServerForm(Control control)
    {
        //base.VerifyRenderingInServerForm(control);
        //This remains empty
    }
    
    
    protected void btnExcel_Click(object sender, ImageClickEventArgs e)
    {
        Response.Clear();
        Response.AddHeader("content-disposition", "attachment;filename=FileName.xls");
        Response.Charset = "";
        Response.Cache.SetCacheability(HttpCacheability.NoCache);
        Response.ContentType = "application/vnd.ms-excel";
        System.IO.StringWriter stringWrite = new System.IO.StringWriter();
        System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
    
        htmlWrite.Write("<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" ");
        htmlWrite.Write("xmlns:x=\"urn:schemas-microsoft-com:office:excel\" ");
        htmlWrite.Write("xmlns=\"http://www.w3.org/TR/REC-html40\"> ");
        htmlWrite.Write("<head> ");
        htmlWrite.Write("<!--[if gte mso 9]><xml> ");
        htmlWrite.Write("<x:ExcelWorkbook> ");
        htmlWrite.Write("<x:ExcelWorksheets> ");
        htmlWrite.Write("<x:ExcelWorksheet> ");
        htmlWrite.Write("<x:Name>Sheet1</x:Name> ");
        htmlWrite.Write("<x:WorksheetOptions> ");
        htmlWrite.Write("<x:Selected/> ");
        htmlWrite.Write("<x:ProtectContents>False</x:ProtectContents> ");
        htmlWrite.Write("<x:ProtectObjects>False</x:ProtectObjects> ");
        htmlWrite.Write("<x:ProtectScenarios>False</x:ProtectScenarios> ");
        htmlWrite.Write("</x:WorksheetOptions> ");
        htmlWrite.Write("</x:ExcelWorksheet> ");
        htmlWrite.Write("</x:ExcelWorksheets> ");
        htmlWrite.Write("</x:ExcelWorkbook> ");
        htmlWrite.Write("</xml><![endif]--> ");
        htmlWrite.Write("</head>");
        htmlWrite.WriteLine("");
    
        gridView.HeaderStyle.Reset();
        gridView.FooterStyle.Reset();
        gridView.AlternatingRowStyle.Reset();
        gridView.RowStyle.Reset();
    
        gridView.BackColor = Color.Transparent;
        gridView.GridLines = GridLines.None;
        gridView.RenderControl(htmlWrite);
    
        Response.Write(stringWrite.ToString());
        Response.End();
    
    }
    

    【讨论】:

      【解决方案2】:

      您可以尝试以下代码并自定义下载数据的颜色。除了数据之外,它也不会为列和行着色。

      protected void DownloadExcel_Click(object sender, EventArgs e)
      {
          Response.ClearContent();
          Response.Buffer = true;
          Response.AddHeader("content-disposition", string.Format("attachment; filename={0}", "Report.xls"));
          Response.ContentType = "application/ms-excel";
          StringWriter sw = new StringWriter();
          HtmlTextWriter htw = new HtmlTextWriter(sw);
          GridView1.AllowPaging = false;
          GridView1.DataBind();
          GridView1.HeaderRow.Style.Add("background-color", "#FFFFFF");
      
          for (int i = 0; i < GridView1.HeaderRow.Cells.Count; i++)
          {
              GridView1.HeaderRow.Cells[i].Style.Add("background-color", "#bfc2c7");
          }
      
          int j = 1;
          foreach (GridViewRow gvrow in GridView1.Rows)
          {           
              //gvrow.BackColor = color.White;
              if (j <= GridView1.Rows.Count)
              {
                  if (j % 2 != 0)
                  {
                      for (int k = 0; k < gvrow.Cells.Count; k++)
                      {
                          gvrow.Cells[k].Style.Add("background-color", "#EFF3FB");    
                      }
                  }
              }
              j++;
          }
          GridView1.RenderControl(htw);
          Response.Write(sw.ToString());
          Response.End();
      }
      

      【讨论】:

      • 还是和我问题中的第二张图一样。
      猜你喜欢
      • 2011-01-23
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-09-25
      相关资源
      最近更新 更多