Stack Overflow Asked by fiverbox.com on November 5, 2020
Is there a way to execute a code in every page loading in ASP.Net Core 5 like in Web Forms?
In Web Forms I used the "Page_Load", but what is the equivalent in ASP.Net Core 5?
so if I call any Action in any Controller, it will run my code first, then run the Action execution.
I found this : How can I execute common code for every request?
But when I tried it I got errors.
Please someone provide me with clear solution.
Also I need a solution to check the session from one place, instead of writing the "check session code" in each controller, I create the session after the login is succeed, but what is the best way to check the session in all controllers and if it is null then redirect to login page.
In asp.net core, you can use Action filters to replace the "Page_Load" method in webform.
You can register the global scope of Action filters in the startup to ensure that the Action filters will be executed before each action is executed.
Add the following Action filter in your project :
public class MyActionFilter : IActionFilter
{
public void OnActionExecuting(ActionExecutingContext context)
{
// Do something before the action executes.
if (!context.HttpContext.Request.Path.ToString().Contains("Login"))
{
if (context.HttpContext.Session.GetString("user") == null)
{
context.Result = new RedirectToRouteResult(
new RouteValueDictionary { { "controller", "Login" }, { "action", "Index" } });
}
}
}
public void OnActionExecuted(ActionExecutedContext context)
{
// Do something after the action executes.
}
}
Then in startup.cs ConfigureServices method, add following code to apply it to all scope:
services.AddControllersWithViews(options =>
{
options.Filters.Add(typeof(MyActionFilter));
});
Correct answer by Yongqing Yu on November 5, 2020
4 Asked on February 4, 2021 by michaelstackquestion
2 Asked on February 4, 2021 by ajij-shaikh
2 Asked on February 4, 2021 by akrilmokus
2 Asked on February 4, 2021 by fahad-munir
2 Asked on February 4, 2021 by fadhil-kemal
android app bundle dart flutter flutter build flutter channel
1 Asked on February 4, 2021 by majid
4 Asked on February 4, 2021 by maggie-blanton
1 Asked on February 3, 2021 by rabie_alkholi
1 Asked on February 3, 2021 by jaysmito-mukherjee
2 Asked on February 3, 2021 by nmdvdisha
2 Asked on February 3, 2021 by luke-prior
1 Asked on February 3, 2021 by chetang
background process beanstalkd deployment production ruby on rails
2 Asked on February 3, 2021 by sachin
2 Asked on February 3, 2021 by mrduk
3 Asked on February 3, 2021 by nishan-gadtaula
3 Asked on February 3, 2021 by askumang
0 Asked on February 3, 2021 by vjswamy
Get help from others!
Recent Answers
Recent Questions
© 2023 AnswerBun.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP