Task : How convert a gridview to Word Document or in Excel Sheet using asp.net/c# code.
Description: Some time we need to generate different kind of reports & need to save it in Excel or word Document for Local Reference, Or sending to other's. So here I create a code for achieve this task the first one is conversion data into Excel & second one is for Word Document.
// For pdf converstion we can use third party dll like ITextSharp
C# Code : For GridView To Excel
C# Code : For GridView To Word
Description: Some time we need to generate different kind of reports & need to save it in Excel or word Document for Local Reference, Or sending to other's. So here I create a code for achieve this task the first one is conversion data into Excel & second one is for Word Document.
// For pdf converstion we can use third party dll like ITextSharp
C# Code : For GridView To Excel
protected void btn_excel_Click(object
sender, EventArgs e)
{
string
attachment = "attachment; filename=myreport.xls";
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.AddHeader("content-disposition", attachment);
Response.ContentType = "application/ms-excel";
StringWriter
swriter = new StringWriter();
HtmlTextWriter
htmlwriter = new HtmlTextWriter(swriter);
// Create a
form to contain the gridview(MyGridView)
HtmlForm
mynewform = new HtmlForm();
MyGridView.Parent.Controls.Add(mynewform);
mynewform.Attributes["runat"] = "server";
mynewform.Controls.Add(MyGridView);
mynewform.RenderControl(htmlwriter);
Response.Write(swriter.ToString());
Response.End();
}C# Code : For GridView To Word
protected void btn_word_Click(object
sender, EventArgs e)
{
Response.AddHeader("content-disposition", "attachment;filename=myreport.doc");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.ContentType = "application/vnd.word";
System.IO.StringWriter
swriter = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlwriter = new
HtmlTextWriter(swriter);
// Create a
form to contain the gridview(MyGridView)
HtmlForm
mynewform = new HtmlForm();
MyGridView.Parent.Controls.Add(mynewform);
mynewform.Attributes["runat"] = "server";
mynewform.Controls.Add(MyGridView);
mynewform.RenderControl(htmlwriter);
Response.Write(swriter.ToString());
Response.End();
}
This comment has been removed by a blog administrator.
ReplyDeleteThank You...(But I think you want to post your link there..) :-)
DeleteThis comment has been removed by a blog administrator.
ReplyDeleteI suggest you take my services for asp.net website development(CMS/E-commerce)... :-)
DeleteThis comment has been removed by a blog administrator.
ReplyDeleteHello Sir....
ReplyDeletePlz post coadings for HTML to PDF.......
you have to work yourself, there is not any ready-made solution....
Deletesearch in google you can find many solution there & apply it yourself...
This comment has been removed by a blog administrator.
ReplyDeleteExcellent guidelines for gridview to wordexcel conversion in asp.net.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteGood info, very useful for me.
ReplyDeleteThanks 4 the useful info.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDelete