Export to CSV using MVC, C# and jQuery

后端 未结 9 1029
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-12 13:42

I am trying to export a list to a CSV file. I got it all working up to the point I want to write to file to the response stream. This doesn\'t do anything.

Here is m

9条回答
  •  失恋的感觉
    2020-12-12 14:06

    yan.kun was on the right track but this is much much easier.

        public FileContentResult DownloadCSV()
        {
            string csv = "Charlie, Chaplin, Chuckles";
            return File(new System.Text.UTF8Encoding().GetBytes(csv), "text/csv", "Report123.csv");
        }
    

提交回复
热议问题