Click here to Skip to main content
15,896,348 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello

I am using a code for download attached excel file.
After download this excel file Gridline of excel is automatically false.
Means Excel gridline not showing.

my code:-

C#
Response.Clear();
            System.IO.StringWriter tw = new System.IO.StringWriter();
            HtmlTextWriter hw = new HtmlTextWriter(tw);
            
            Response.ContentType = "application/msexcel";
            //Response.AddHeader("Content-disposition", "attachment;filename=MyFiles.xls");
            Response.AddHeader("Content-disposition", string.Format("attachment;filename=MyFiles.xls; Gridlines=true"));
            

            using (StringWriter sw = new StringWriter())
            {
                using (HtmlTextWriter htw = new HtmlTextWriter(sw))
                {
                    Table table = new Table();

                    //  include the gridline settings
                    table.GridLines = gv.GridLines;

                    //  add the header row to the table
                    if (gv.HeaderRow != null)
                    {
                        table.Rows.Add(gv.HeaderRow);
                    }
                    foreach (GridViewRow row in gv.Rows)
                    {
                        table.Rows.Add(row);
                    }
                    table.RenderControl(htw);                   
                    HttpContext.Current.Response.Write(sw.ToString());
                    HttpContext.Current.Response.End();
                }
            }


please help
Posted
Updated 29-Mar-13 13:02pm
v4

1 solution

//Try this
Table table = new Table();
           table.BorderStyle = BorderStyle.Solid;
           table.BorderWidth=new Unit(1);
           table.BorderColor = System.Drawing.Color.Black;
           table.GridLines = GridLines.Both;


//You can also render the GridView directly
 
Share this answer
 
Comments
Rakesh Tailor 29-Mar-13 9:17am    
thanks for support.
But this code is for lines between data not for all gridlines in excel sheet.
I want to show gridline in whole sheet.
thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900