0

我需要设置一个自定义路由值,这样你就不得不去

站点/管理员/elmah.axd

在我的 web.config 中,我有:

<location path="elmah.axd">
 <system.web>
   <authorization>
     <allow roles="Admin" />
     <deny users="*" />
   </authorization>
 </system.web>
</location>

加上所有其他相关的 elmah 设置。如果我删除该部分,我可以输入:

网站/elmah.axd

但我只希望管理员能够访问此页面。

我有一个您登录的管理页面,如果您是管理员角色,那么您应该被重定向到 elmah.axd

    public AdminController(IRepository<User> userRepository)
    {
        _userRepository = userRepository;
    }

    //
    // GET: /Admin/

    public ActionResult Index()
    {
        return View(Constants.Admin);
    }

public ActionResult AdminLogin(string SSN)
    {
        var user = _userRepository.FindBy(x => x.UserName == SSN).SingleOrDefault();
        if (UserIsAnAdmin(user))
        {
            return RedirectToRoute("/elmah.axd");
        }
        return View(Constants.DeniedAccess);
    }

我的 Global.asax 文件中有一个需要帮助的路由值。

 routes.MapRoute(
            "mocklogin",
            "{controller}/{action}", // URL with parameters
            new { controller = "MockLogin", action = "Index" } // Parameter defaults
            );


        routes.MapRoute(
            "elmah.axd",
            "{controller}/{action}", // URL with parameters

            );



        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}", // URL with parameters
            //need something here redirecting to the elmah.axd page      
    );

有没有办法将页面重定向到我网站上的 /elmah.axd 页面。

最后,我想转到我网站的管理员页面,如果用户是管理员,当我单击提交时,我想重定向到 elmah.axd 页面。否则我会转到我的自定义错误页面。我需要以某种方式让控制器上的 ssn 调用条件,如果为真,则重定向到 elmah.axd。如何在 MVC 中重定向到 elmah.axd?

4

2 回答 2

1

更新:要重定向到静态路由,请使用 Response.Redirect("URL");

见下文 :

您不能创建指向控制器和动作以外的其他东西的路由。所以最好的办法是你的控制器的索引操作重定向到 /elmah.axd 并将你的默认路由设置为这个操作。

路线 :

routes.MapRoute(
    "Default", // Route name
    "{controller}/{action}", // URL with parameters

);

控制器 :

    public AdminController(IRepository<User> userRepository)
    {
        _userRepository = userRepository;
    }

    public ActionResult Index()
    {
         Response.Redirect("/elmah.axd");
         return View(); //will not be hit
    }

    public ActionResult AdminLogin(string SSN)
    {
        var user = _userRepository.FindBy(x => x.UserName == SSN).SingleOrDefault();
        if (UserIsAnAdmin(user))
        {
            return RedirectToRoute("/elmah.axd");
        }
        return View(Constants.DeniedAccess);
    }

让我知道它是否有效。

于 2013-03-06T17:13:22.413 回答
0

您可以Application_AuthenticateRequestGlobal.asax文件中使用。

protected void Application_AuthenticateRequest(Object sender, EventArgs e)
{
    if (HttpContext.Current.User.IsInRole("Admin"))
        // Do your thing
}
于 2013-03-06T17:06:33.563 回答