Skip to content

Instantly share code, notes, and snippets.

@Godoy
Created August 22, 2013 19:04
Show Gist options
  • Select an option

  • Save Godoy/6311383 to your computer and use it in GitHub Desktop.

Select an option

Save Godoy/6311383 to your computer and use it in GitHub Desktop.
cabeçalhos para gerar excel (xls) no .net C#
HttpContext.Response.ContentType = "application/vnd.ms-excel";
HttpContext.Response.AddHeader("content-disposition", "attachment;filename=nome_arquivo-" + DateTime.Now.ToString("yyyy-MM-dd_HH-mm") + ".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