Monday 11 December 2017

Export to CSV using MVC, C# and jQuery

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

No comments:

Post a Comment

Note: only a member of this blog may post a comment.