Overblog
Edit post Follow this blog Administration + Create my blog

Export Gridview data to Excel

February 18 2010 , Written by Balavardhan Reddy Published on #ASP.Net

i)  Get the Data from the Database and Bind it to the Gridview
ii) Set Gridview Allowpaging property to "False"

Write the below code to export the entire Gridview data to Excel sheet


 private void ExportGridView()
        {
                string style = @"<style> .text { mso-number-format:\@; } </style> ";
                string attachment = "attachment; filename=Contacts.xls";
                Response.ClearContent();
                Response.AddHeader("content-disposition", attachment);
                Response.ContentType = "application/ms-excel";
                StringWriter sw = new StringWriter();
                HtmlTextWriter htw = new HtmlTextWriter(sw);
          
                // Create a form to contain the grid
                HtmlForm frm = new HtmlForm();
                VerificationTrackingGridView.Parent.Controls.Add(frm);
                frm.Attributes["runat"] = "server";
                frm.Controls.Add(VerificationTrackingGridView);
                frm.RenderControl(htw);

                Response.Write(style);
                Response.Write(sw.ToString());
                Response.End();

        }
Share this post
Repost0
To be informed of the latest articles, subscribe:
Comment on this post
B
<br /> <br />
Reply
M
<br /> Good content, thanks.<br />
Reply
M
<br /> Thanks for the code mate.<br />
Reply
F
<br /> <br /> Wholesale Gucci Handbags<br /> Wholesale Chanel Handbags<br /> Wholesale D&G Handbags<br /> Wholesale Coach Wallets<br /> Wholesale LV Wallets<br /> Wholesale Gucci Wallets<br /> Wholesale Chanel Wallets<br /> Wholesale LV Sunglasses<br /> Wholesale Gucci Sunglasses<br /> Wholesale Chanel Sunglasses<br /> Wholesale D&G Sunglasses<br /> Wholesale nfl jerseys<br /> wholesale jerseys<br /> wholesale football jerseys<br /> authentic jerseys<br /> Wholesale nfl jersey<br /> wholesale nhl jerseys<br /> wholesale hockey jerseys<br /> discount nhl jerseys<br /> Wholesale nba jerseys<br /> wholesale basketball jerseys<br /> discount nba jerseys<br /> Wholesale mlb jerseys<br /> wholesale baseball jerseys<br /> discount mlb jerseys<br /> Wholesale NCAA Jerseys<br /> Wholesale Custom Jersey<br /> Nike Air Max<br /> Air Max<br /> Nike Air Max Shoes<br /> Air Max Shoes<br /> Nike Air Max 2010<br /> Air Max 95<br /> Air Max 90<br /> Air Max LTD<br /> Air Max TN<br /> Air Max Skyline<br /> Air Max Classic<br /> <br /> <br /> <br />
Reply
S
<br /> <br /> Nice article,awesome comments.I really enjoyed reading.keep posting.<br /> <br /> <br /> <br />
Reply