เริ่มต้นให้ทำการ override method ชื่อ VerifyRenderingInServerForm เพื่อควบคุมการ Render ASP.NET Control ขณะ RunTime (อ้างอิง : http://msdn.microsoft.com/en-us/library/system.web.ui.page.verifyrenderinginserverform.aspx)
public override void VerifyRenderingInServerForm(Control control) { }
จากนั้นมาสร้่าง method สำหรับสร้าง Export Excel ในตัวอย่างนี้ผมจะเริ่มต้นด้วยการสร้าง Class ชื่อ GridViewExport ซึ่งเป็น Static Class เพือเรียก Method Export
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
/// <summary>
/// Summary description for GridViewExport
/// </summary>
public static class GridViewExport
{
public static void Export(string fileName, GridView gv)
{
//
// TODO: Add constructor logic here
//
}
}
จากนั้นสร้าง method ชื่อ PrepareControlForExport เืพื่อ Replace Control ต่างๆ ลง LiteralControl โดย โดย Literal Control นั้น Inherit มาจากคลาส System.Web.UI.Control ช่วยให้สามารถควบคุมรูปแบบการแสดงผลพวก Style ต่างๆได้ รวมถึงการสร้าง tag Label ดังนั้นจึงช่วยให้ HTML ที่ได้สะอาดและเรียบร้อยกว่า
/// <summary>
/// Replace any of the contained controls with literals
/// </summary>
/// <param name="control"></param>
private static void PrepareControlForExport(Control control)
{
for (int i = 0; i < control.Controls.Count; i++)
{
Control current = control.Controls[i];
if (current is LinkButton)
{
control.Controls.Remove(current);
control.Controls.AddAt(i, new LiteralControl((current as LinkButton).Text));
}
else if (current is ImageButton)
{
control.Controls.Remove(current);
control.Controls.AddAt(i, new LiteralControl((current as ImageButton).AlternateText));
}
else if (current is HyperLink)
{
control.Controls.Remove(current);
control.Controls.AddAt(i, new LiteralControl((current as HyperLink).Text));
}
else if (current is DropDownList)
{
control.Controls.Remove(current);
control.Controls.AddAt(i, new LiteralControl((current as DropDownList).SelectedItem.Text));
}
else if (current is CheckBox)
{
control.Controls.Remove(current);
control.Controls.AddAt(i, new LiteralControl((current as CheckBox).Checked ? "True" : "False"));
}
if (current.HasControls())
{
GridViewExport.PrepareControlForExport(current);
}
}
}
จากนั้นก็มาแก้ไข Method Export โดยเพิ่ม Code ดังนี้
public static void Export(string fileName, GridView gv)
{
try
{
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.Charset = "utf-8";
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.GetEncoding("windows-874");
HttpContext.Current.Response.AddHeader("content-disposition", string.Format("attachment; filename={0}", fileName));
HttpContext.Current.Response.ContentType = "application/ms-excel";
using (StringWriter sw = new StringWriter())
{
using (HtmlTextWriter htw = new HtmlTextWriter(sw))
{
htw.WriteLine(@"<!DOCTYPE HTML PUBLIC ""-//W3C//DTD HTML 4.0 Transitional//EN"">");
htw.WriteLine("<meta http-equiv='Content-Type' content='text/html; charset=windows-874'>");
// Create a form to contain the grid
Table table = new Table();
// include the gridline settings
table.GridLines = GridLines.Both;
// add the header row to the table
if (gv.HeaderRow != null)
{
GridViewExport.PrepareControlForExport(gv.HeaderRow);
table.Rows.Add(gv.HeaderRow);
}
// add each of the data rows to the table
foreach (GridViewRow row in gv.Rows)
{
GridViewExport.PrepareControlForExport(row);
table.Rows.Add(row);
}
// add the footer row to the table
if (gv.FooterRow != null)
{
GridViewExport.PrepareControlForExport(gv.FooterRow);
table.Rows.Add(gv.FooterRow);
}
// render the table into the htmlwriter
table.RenderControl(htw);
// render the htmlwriter into the response
HttpContext.Current.Response.Write(sw.ToString());
HttpContext.Current.Response.End();
}
}
}
catch (System.Threading.ThreadAbortException ex)
{
}
}
ตอนนี้เราก็สามารถ Export ข้อมูลจาก GridView ไปยังไฟล์ Excel ได้แล้ว สามารถเรียกใช้งานได้ ดังนี้
GridViewExport.Export("report.xls", GridviewControl);
ในกรณีที่ Button ถูกเรียกภายใต้ UpdatePanel อาจเกิดปัญหาได้ ให้เพิ่ม Trigger ไปด้วย ดังนี้
<Triggers>
<asp:PostBackTrigger ControlID="ButtonID" />
</Triggers>
ไม่มีความคิดเห็น:
แสดงความคิดเห็น