我們正在嘗試做一些有登錄屏幕的網站。但是我們有一個問題。我們的域名是localhost/Login/User。但是,如果用戶進入localhost/Home/Index,他/她可以不登錄就可以訪問我們的主站點。所以我們寫了[授權]給我們的索引控制器。但我找不到我必須使用的東西。我必須在我們的項目中使用AuthorizeAttribute嗎?MVC身份驗證控制器
#Login Page
public class LoginController : Controller
{
//GET: Login
[IntranetAction]
public ActionResult Users()
{
return View();
}
public ActionResult Authentication(UserLoginInfo loginInfo)
{
bool isAuthenticated = new LdapServiceManager().isAuthenticated(loginInfo);
if (isAuthenticated)
{
//AUTHORIZED
Session["userName"] = loginInfo.username;
return Redirect("/Home/Index");
}
//WORNG PASSWORD, BACK TO LOGIN PAGE
TempData["message"] = "Yanlış kullanıcı adı ya da şifre";
return Redirect("/");
}
}
索引頁
[Authorize]
public ActionResult Index()
{
Session["ip"] = Request.UserHostAddress;
if (IsDbExists())
{
_contactList = new List<Contact>();
UpdateOperations();
return View(_contactList);
}
Response.Redirect("/Loading/LoadingScreen");
return null;
}