Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
why excel return csv format? I need xlsx format. How can change format? With csv format in excel data looks like this
Hi,
Use the response object
HttpContext.Current.Response.Clear(); HttpContext.Current.Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; HttpContext.Current.Response.AddHeader("Content-Disposition", "ReportResult.xlsx"); HttpContext.Current.Response.BinaryWrite(pck.GetAsByteArray()); HttpContext.Current.Response.End();
Grazitti
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
form export to excel
why excel return csv format? I need xlsx format. How can change format? With csv format in excel data looks like this
Hi,
Use the response object
Grazitti
is working on a reply...