asp.net mvc返回文件: public ActionResult ExportReflection(string accessToken) { var reflections = GetCmsReflectionList(accessToken); var sb = new StringBuilder(); sb.AppendFormat("{0,-10},{1,-10},{2,-10},{3,-10},{4,-10},{5,-100},{6,-100},{7,-50}", &…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace test.Controllers { using System.Data; using System.IO; using Aspose.Cells; public class ExcelController : Controller { public FileRes…