What is the best to do a redirect in an ActionFilterAttribute. I have an ActionFilterAttribute called IsAuthenticatedAttributeFilter and that checked the value of a session variable. If the variable is false, I want the application to redirect to the login page. I would prefer to redirect using the route name "SystemLogin" however any redirect method at this point would be fine.
|
With the route name:
You can also do something like:
|
|||||
|
|
It sounds like you want to re-implement, or possibly extend, Also, you want to make sure that you authorize before you do any of the real work in the action method - otherwise, the only difference between logged in and not will be what page you see when the work is done.
There is a good question with an answer with more details here on SO. |
|||
|
|
|
Try the following, it is very simple and clear:
|
|||
|
|
you could inherit your controller then use it inside your action filter inside your ActionFilterAttribute class:
inside your base controller:
Cons. of this is to change all controllers to inherit from "MyController" class |
|||
|
|