In my c#.NET MVC application you can download an excel file (with the Nuget EPPlus). To send the file to user I set content type as it follows:
System.Web.HttpContext.Current.Response.ContentType = "application/vnd.xls";
What is the difference with:
System.Web.HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
Which one should I use?