GridViewExportUtil allows you to Export a gridview to excel. In my gridview, one of the columns can display different types...just DDLs or DDLs and Textboxes.
Here's the code for the Gridview:
<asp:GridView ID="gvCatalogue" runat="server" AutoGenerateColumns="False" AllowSorting="True"
CellPadding="5" AllowPaging="True" PageSize="20" AlternatingRowStyle-BackColor="WhiteSmoke"
HeaderStyle-BackColor="#6F9DD9" HeaderStyle-BorderStyle="Solid" HeaderStyle-BorderColor="White"
HeaderStyle-BorderWidth="1px" HeaderStyle-ForeColor="White" HeaderStyle-VerticalAlign="Top"
OnPageIndexChanging="gvCatalogue_PageIndexChanging" OnSorting="gvCatalogue_Sorting"
OnRowDataBound="gvCatalogue_RowDataBound" DataKeyNames="ITEM_PK_KEY" Width="100%">
<Columns>...
<asp:TemplateField HeaderText="Quantity">
<ItemTemplate>
<asp:DropDownList ID="ddlQuantity" runat="server" Width="250px"
onselectedindexchanged="ddlQuantity_SelectedIndexChanged" />
<asp:CompareValidator ID="cvQuantity" runat="server" Display="Dynamic"
ErrorMessage="Please enter a number." ControlToValidate="txtQuantity"
Operator="GreaterThanEqual" Type="Double" ValueToCompare="0">*</asp:CompareValidator>
<asp:TextBox ID="txtQuantity" runat="server" Width="60px"
ontextchanged="txtQuantity_TextChanged" />
<asp:Label ID="lblPiecesPerBox" runat="server" Width="180px" />
<asp:HiddenField ID="hidQuantity" runat="server" />
<asp:HiddenField ID="hidShoppingCartItemId" runat="server" />
<asp:HiddenField ID="hidPromotionItem" runat="server" Value='<%# Eval("PR_TYPE")%>' />
<asp:HiddenField ID="hidPiecesPerBox" runat="server" />
</ItemTemplate>
</asp:TemplateField>...
...when the gridview displays only dropdowns, the export to Excel works fine. When it displays dropdowns and textboxes, it throws an error... the "Problems during load...missing File..." error.
I can't figure out why it wont work when the text box is displayed. I'd be okay with not displaying the textbox values if that was the only way to make it work.
Here's the GridViewExportUtil code:
using System;
using System.Data;
using System.Configuration;
using System.IO;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
///
/// </summary>
public class GridViewExportUtil
{
public static string ExportToHtml(Control control)
{
using (StringWriter sw = new StringWriter())
{
using (HtmlTextWriter htw = new HtmlTextWriter(sw))
{
Table tbl = new Table();
TableRow tr = new TableRow();
TableCell tc = new TableCell();
tr.Cells.Add(tc);
tbl.Rows.Add(tr);
PrepareControls(control, tc);
tbl.RenderControl(htw);
}
return sw.ToString();
}
}
/// <summary>
/// Exports a gridview to HTML as a string.
/// </summary>
/// <param name="gv"></param>
/// <returns></returns>
public static string ExportToHtml(GridView gv)
{
using (StringWriter sw = new StringWriter())
{
using (HtmlTextWriter htw = new HtmlTextWriter(sw))
{
// Create a table to contain the grid
Table table = new Table();
// include the gridline settings
table.GridLines = gv.GridLines;
// add the header row to the table
if (gv.HeaderRow != null)
{
GridViewExportUtil.AppendRow(table, gv.HeaderRow);
}
// add each of the data rows to the table
foreach (GridViewRow row in gv.Rows)
{
GridViewExportUtil.AppendRow(table, row);
}
// add the footer row to the table
if (gv.FooterRow != null)
{
GridViewExportUtil.AppendRow(table, gv.FooterRow);
}
// render the table into the htmlwriter
table.RenderControl(htw);
}
return sw.ToString();
}
}
private static void AppendRow(Table table, GridViewRow row)
{
TableRow tr = new TableRow();
foreach (TableCell cell in row.Cells)
{
TableCell tc = new TableCell();
tc.Text = cell.Text;
tc.Width = cell.Width;
tc.Wrap = cell.Wrap;
tc.Height = cell.Height;
tc.HorizontalAlign = cell.HorizontalAlign;
tc.VerticalAlign = cell.VerticalAlign;
tc.ColumnSpan = cell.ColumnSpan;
tc.RowSpan = cell.RowSpan;
PrepareControls(cell, tc);
tr.Cells.Add(tc);
}
table.Rows.Add(tr);
}
private static void PrepareControls(Control source, Control control)
{
foreach(Control current in source.Controls)
{
if (current is LinkButton)
{
control.Controls.Add(new LiteralControl((current as LinkButton).Text));
}
else if (current is HiddenField)
{
}
else if (current is TextBox)
{
//control.Controls.Add(new LiteralControl((current as TextBox).Text));
}
else if (current is ImageButton)
{
control.Controls.Add(new LiteralControl((current as ImageButton).AlternateText));
}
else if (current is HyperLink)
{
control.Controls.Add(new LiteralControl((current as HyperLink).Text));
}
else if (current is DropDownList)
{
control.Controls.Add(new LiteralControl((current as DropDownList).SelectedItem.Text));
}
else if (current is CheckBox)
{
control.Controls.Add(new LiteralControl((current as CheckBox).Checked ? "True" : "False"));
}
else if (current is LiteralControl)
{
control.Controls.Add(new LiteralControl((current as LiteralControl).Text));
}
else if (current is Literal)
{
control.Controls.Add(new LiteralControl((current as Literal).Text));
}
else if (current is Label)
{
control.Controls.Add(new LiteralControl((current as Label).Text));
}
else if (current is DataBoundLiteralControl)
{
control.Controls.Add(new LiteralControl((current as DataBoundLiteralControl).Text));
}
if (current.HasControls())
{
GridViewExportUtil.PrepareControls(current, control);
}
}
}
/// <summary>
///
/// </summary>
/// <param name="fileName"></param>
/// <param name="gv"></param>
public static void Export(string fileName, GridView gv)
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.AddHeader(
"content-disposition", string.Format("attachment; filename={0}", fileName));
HttpContext.Current.Response.ContentType = "application/ms-excel";
string html = ExportToHtml(gv);
// render the htmlwriter into the response
HttpContext.Current.Response.Write(html);
HttpContext.Current.Response.End();
}
}
Any help would be great. Thanks!