asp.net mvc filter

本文介绍ASP.NET MVC中的过滤器概念,包括四种基本类型的过滤器及其默认实现。通过示例展示了如何创建自定义过滤器属性以在控制器操作之前和之后执行特定行为。

Using Filters to Attach Reusable Behaviors

 

Introducing the Four Basic Types of Filters

 

 

Notice that ActionFilterAttribute is the default implementation for both IActionFilter
and IResultFilter—it implements both of those interfaces. It’s meant to be totally general
purpose, so it doesn’t provide any implementation (in fact, it’s marked abstract, so you can
only use it by deriving a subclass from it). However, the other default implementations
(AuthorizeAttribute and HandleErrorAttribute) are concrete, contain useful logic, and can
be used without deriving a subclass.
To get a better understanding of these types and their relationships, examine Figure 9-6.
It shows that all filter attributes are derived from FilterAttribute, and also implement one or
more of the filter interfaces. The dark boxes represent ready-to-use concrete filters; the rest are
interfaces or abstract base classes. Later in this chapter, you’ll learn more about each built-in
filter type.

 

MyFilter Demo:

 

01using System;
02using System.Collections.Generic;
03using System.Linq;
04using System.Web;
05using System.Web.Mvc;
06 
07namespace TestMvcWebApp1.ActionResultEx
08{
09    public class ShowMessageAttribute:ActionFilterAttribute
10    {
11        public string Message { get; set; }
12        public override void OnActionExecuting(ActionExecutingContext filterContext)
13        {
14            filterContext.HttpContext.Response.Write("[BeforeAction " + Message + "]");
15        }
16        public override void OnActionExecuted(ActionExecutedContext filterContext)
17        {
18            filterContext.HttpContext.Response.Write("[AfterAction " + Message + "]");
19        }
20        public override void OnResultExecuting(ResultExecutingContext filterContext)
21        {
22            filterContext.HttpContext.Response.Write("[BeforeResult " + Message + "]");
23        }
24        public override void OnResultExecuted(ResultExecutedContext filterContext)
25        {
26            filterContext.HttpContext.Response.Write("[AfterResult " + Message + "]");
27        }
28    }
29}

 

 

 

使用:

 

01using System;
02using System.Collections.Generic;
03using System.Linq;
04using System.Web;
05using System.Web.Mvc;
06using TestMvcWebApp1.ActionResultEx;
07using System.Data.SqlClient;
08 
09namespace TestMvcWebApp1.Controllers
10{
11    public class ShowMessageDemoController : Controller
12    {
13        //
14        // GET: /ShowMessageDemo/
15        [ShowMessage(Message = "这是我的信息A" , Order=1)]
16        [HandleError(View="Problem")]
17        public ActionResult Index()
18        {
19            int a = 0;
20            SqlConnection conn = new SqlConnection();
21            conn.Open();
22 
23            return Content("  网页内容  ");
24        }
25 
26    }
27}

 

输出结果:

[BeforeAction 这是我的信息A][AfterAction 这是我的信息A]

[BeforeResult 这是我的信息A]  网页内容  [AfterResult 这是我的信息A]

 

 <customErrors mode="On"></customErrors>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值