Skip to content

Instantly share code, notes, and snippets.

@leandrocustodio
Created June 28, 2013 16:21
Show Gist options
  • Save leandrocustodio/5885972 to your computer and use it in GitHub Desktop.
Save leandrocustodio/5885972 to your computer and use it in GitHub Desktop.
Confirgurações do HttpContext para gerar um arquivo do Excel
HttpContext.Response.ContentType = "application/vnd.ms-excel";
HttpContext.Response.AddHeader("content-disposition", "attachment;filename=exportar.xls");
HttpContext.Response.Charset = "utf-8";
HttpContext.Response.ContentEncoding = System.Text.Encoding.GetEncoding("windows-1250");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment