Skip to content

Instantly share code, notes, and snippets.

@WilbertOnGithub
Last active August 29, 2015 14:21
Show Gist options
  • Save WilbertOnGithub/3f93e8a77d19f684b105 to your computer and use it in GitHub Desktop.
Save WilbertOnGithub/3f93e8a77d19f684b105 to your computer and use it in GitHub Desktop.
ASP.NET download CSV
// POST
public FileContentResult GenerateCsvDownload(FormCollection formCollection)
{
string csv = Request.Form["csv"];
return File(Encoding.UTF8.GetBytes(csv), "text/plain", "csv.txt");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment