سلام عزیزان
از طریق کدهای زیر می توانید از جدول مورد نظر خروجی Excel تهیه کنید :
خروجی :
فایل تمرین پیوست شد.
از طریق کدهای زیر می توانید از جدول مورد نظر خروجی Excel تهیه کنید :
Response.Clear(); Response.AddHeader("content-disposition", "attachment;filename=GridView-CV-Export.xls"); Response.Charset = "UTF-8"; Response.ContentType = "application/x-msdownload"; Response.HeaderEncoding = System.Text.UTF8Encoding.UTF8; System.IO.StringWriter sw = new System.IO.StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); GridViewexcel.RenderControl(htw); Response.Write("<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />"); Response.Write(sw.ToString()); Response.End();این کد برای عبارات فارسی بهینه شده و مشکلی ندارد.
خروجی :
فایل تمرین پیوست شد.