标签:style class blog code http tar
Action方法返回ActionResult类型的结果。ASP.NET MVC为我们提供了几种ActionResult的实现,如下:
当然我们也可以自定一个我们的ActionResult返回给客户端,例如一个RssResult。
14.Controller的逻辑处理中可能会需要用到通用的部分,比如为用户打印错误信息操作, 那么我们可以自己通过继承Controller,实现自己的基类.
[AcceptVerbs("GET")] public ActionResult Setting() { throw new NotImplementedException(); } [ActionName("Setting"), AcceptVerbs("POST")] public ActionResult SaveSetting() { throw new NotImplementedException(); }
ASP.NET MVC 入门4、Controller与Action,布布扣,bubuko.com
ASP.NET MVC 入门4、Controller与Action
标签:style class blog code http tar
原文地址:http://www.cnblogs.com/ybtools/p/3793306.html