How can I use Url.Action() in a class file of MVC project?
Like:
namespace _3harf
{
public class myFunction
{
public static void CheckUserAdminPanelPermissionToAccess()
{
if (ReferenceEquals(HttpContext.Current.Session["Loged"], "true") &&
myFunction.GetPermission.AdminPermissionToLoginAdminPanel(
Convert.ToInt32(HttpContext.Current.Session["UID"])))
{
HttpContext.Current.Response.Redirect(Url.Action("MainPage", "Index"));
}
}
}
}
You will need to manually create the
UrlHelper
class and pass the appropriateRequestContext
. It could be done with something like:However, you are trying to achieve redirection based on authentication. I suggest you look at implementing a custom
AuthorizeAttribute
filter to achieve this kind of behavior to be more in line with the framework