Skip to content

Instantly share code, notes, and snippets.

View aprilyush's full-sized avatar
🎯
Focusing

aprilyu aprilyush

🎯
Focusing
View GitHub Profile
@aprilyush
aprilyush / ExcelResult.cs
Created January 12, 2017 09:16 — forked from SLaks/ExcelResult.cs
ExcelExporter.Mvc – A simple ActionResult for returning Excel files from ASP.Net MVC actions using ExcelExporter
using System;
using System.Collections.Generic;
using System.IO;
using System.Web.Mvc;
namespace ExcelExporter.Mvc {
///<summary>An ActionResult that sends an Excel spreadsheet to the client.</summary>
public class ExcelResult : FilePathResult {
static readonly Dictionary<ExcelFormat, string> ContentTypes = new Dictionary<ExcelFormat, string> {
{ ExcelFormat.Excel2003, "application/vnd.ms-excel" },