2010-02-16 88 views
1

目前我正在使用ASP.NET MVC,並有家庭/索引註銷用戶顯示爲「/」,但這讓我感到困惑,我怎麼可以有一個記錄「/」在用戶?ASP.NET MVC登錄路線

我可以修改像127.0.0.1/home - 但我想它像「/」。我的困惑與「/」[127.0.0.1/]在路由集合中綁定到home/index的事實有關。

我怎樣才能讓「/」共享登錄/註銷?

回答

1

在你的HomeController

public ActionResult Index() 
{ 
    if (User.Identity.IsAuthenticated) return view("Logged"); 
    else return View("NotLogged"); 
}