asp.net-mvc – 如何在ActionFilterAttribute ASP MVC 5中为ViewBag设置值?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何在ActionFilterAttribute ASP MVC 5中为ViewBag设置值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
您好,我想为我的应用程序中的每个控制器创建自定义ActionFilterAttribute,此属性应该设置一些ViewBag值. ActionFilterAttribute是否适合它,以及如何在ActionFilterAttribute中访问viewbag?

解决方法

你可以这样做
public class SomeMsgAttribute : FilterAttribute,IResultFilter
{
        public void OnResultExecuted(ResultExecutedContext filterContext)
        {
        }

        public void OnResultExecuting(ResultExecutingContext filterContext)
        {
            filterContext.Controller.ViewBag.Msg= "Hello";
        }
}

使用:

[SomeMsg]
public ActionResult Index()
{
    return View();
}
原文链接:https://www.f2er.com/aspnet/250000.html

猜你在找的asp.Net相关文章