我在一個應用程序的工作,我需要驗證請求來自通過認證的用戶的最佳場所。因爲我基於用戶Guid做了很多加載。哪裏是驗證用戶進行身份驗證在asp.net mvc的
例
public ActionResult ManageEmployee()
{
var loadedEmp = GetLoadedEmp(GetLoggedUserGuid());
return View("Employee/Manage", loadedEmp);
}
我的問題是,做我需要做的這個「驗證用戶身份驗證」
public ActionResult ManageEmployee()
{
if (!User.Identity.IsAuthenticated)
{
return View("Account/LogOn");
}
var loadedEmp = GetLoadedEmp(GetLoggedUserGuid());
return View("Employee/Manage", loadedEmp);
}
每ActionResult的功能還是有野獸的方式或集中式解決方案。
感謝