En iyi yol ActionFilterAttribute kullanmaktır. Net Core ve .Net Framework'te nasıl kullanılacağını göstereceğim.
.Net Core 2.1 ve 3.1
public class ViewBagActionFilter : ActionFilterAttribute
{
public override void OnResultExecuting(ResultExecutingContext context)
{
if (context.Controller is PageModel)
{
var controller = context.Controller as PageModel;
controller.ViewData.Add("Avatar", $"~/avatar/empty.png");
controller.ViewBag.Avatar = $"~/avatar/empty.png";
}
if (context.Controller is Controller)
{
var controller = context.Controller as Controller;
controller.ViewData.Add("Avatar", $"~/avatar/empty.png");
controller.ViewBag.Avatar = $"~/avatar/empty.png";
}
base.OnResultExecuting(context);
}
}
Sonra bunu startup.cs dosyanıza kaydetmeniz gerekir.
.Net Çekirdek 3.1
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews(options => { options.Filters.Add(new Components.ViewBagActionFilter()); });
}
.Net Çekirdek 2.1
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc(options =>
{
options.Filters.Add(new Configs.ViewBagActionFilter());
});
}
Daha sonra tüm görünümlerde ve sayfalarda kullanabilirsiniz
@ViewData["Avatar"]
@ViewBag.Avatar
.Net Framework (ASP.NET MVC .Net Framework)
public class UserProfilePictureActionFilter : ActionFilterAttribute
{
public override void OnResultExecuting(ResultExecutingContext filterContext)
{
filterContext.Controller.ViewBag.IsAuthenticated = MembershipService.IsAuthenticated;
filterContext.Controller.ViewBag.IsAdmin = MembershipService.IsAdmin;
var userProfile = MembershipService.GetCurrentUserProfile();
if (userProfile != null)
{
filterContext.Controller.ViewBag.Avatar = userProfile.Picture;
}
}
}
özel sınıfınızı global olarak kaydedin. asax (Application_Start)
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
GlobalFilters.Filters.Add(new UserProfilePictureActionFilter(), 0);
}
Sonra tüm görünümlerde kullanabilirsiniz
@ViewBag.IsAdmin
@ViewBag.IsAuthenticated
@ViewBag.Avatar
Ayrıca başka bir yol var
HtmlHelper'da bir uzantı yöntemi oluşturma
[Extension()]
public string MyTest(System.Web.Mvc.HtmlHelper htmlHelper)
{
return "This is a test";
}
Sonra tüm görünümlerde kullanabilirsiniz
@Html.MyTest()