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…
ASP.NET MVC WebApi 返回数据类型序列化控制(json,xml) 我们都知道在使用WebApi的时候Controller会自动将Action的返回值自动进行各种序列化处理(序列化为json,xml等),但是如果Controller的自动序列化后的结果不是我们想要的该怎么办呢?其实在MVC中有一个GlobalConfiguration(命名空间System.Web.Http)类可以设置WebApi的Controller自动序列化机制,这里我们就通过WebApi的Controll…
因mvc控制器返回类型JsonResult 在处理对象转JSON的时候,对日期的格式化处理并不太符合要求,所以重新继承抽象类ActionResult使用Newtonsoft.Json来系列化 using System; using System.Text; using System.Web; using System.Web.Mvc; using Newtonsoft.Json; namespace Comon { public class JsonNetResult : ActionResul…