Hi I'm using FluentSecurity to authenticate and verify users permissions in my MVC application. In the basic settings when a user wants to access to denied Action it throws an exception. I want to know how should I redirect to another page (such as login page) instead of showing yellow exception page ?
|
|
|||
|
|
|
I never use
And also you can use For more information, check ScottGu's post. http://weblogs.asp.net/scottgu/archive/2008/07/14/asp-net-mvc-preview-4-release-part-1.aspx |
|||||||||
|
|
|
I know this question has been answered already but I don't like putting a try catch in every action to handle this situation. Fluent Security allows you to register a handler for policy violations (see http://www.fluentsecurity.net/wiki/Policy-violation-handlers). You have to have a class that inherits from IPolicyViolationHandler. The convention is to name your class Here is an example of a Handler to register a DenyAnonymousAccessPolicyViolationHandler
One other caveat that you will run into is that you have to use an IOC container to register these handlers. I won't debate whether using and IOC container is good or bad but I prefer not to use on if I don't have too. On their website there was a blog written on how to do this without using an IOC container but I didn't really like that approach as well. Here is what I did.
|
||||
|
|
Currently FluentSecurity stable version(1.4) doesn't have any built-in features to handle
|
|||||
|