摘要: 在Model文件夹下添加一个类MyActionFilterAttribute继承于ActionFilterAttribute: using System; using System.Collections.Generic; using System.Linq; using System.Web; u 阅读全文
posted @ 2016-02-27 14:24 黄者之风 阅读(1200) 评论(0) 推荐(0) 编辑
摘要: MVC4提供的四种基本类型过滤器接口,IAuthorizationFilter、IActionFilter、IResultFilter和IExceptionFilter,可通过继承对应的接口和FilterAttrbute特性,定义自己的过滤器,也可继承内置的过滤器,重写相应的方法,完成自己的需求。 阅读全文
posted @ 2016-02-27 14:17 黄者之风 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 1. RenderBody在Razor引擎中没有了“母版页”,取而代之的是叫做“布局”的页面(_Layout.cshtml)放在了共享视图文件夹中。在这个页面中,会看到标签里有这样一条语句:@RenderBody()其实它的作用和母版页中的服务器控件类似,当创建基于此布局页面的视图时,视图的内容会和 阅读全文
posted @ 2016-02-27 10:58 黄者之风 阅读(649) 评论(0) 推荐(0) 编辑