This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" }, |