我正在检查用户是否已通过身份验证,如果用户未通过身份验证,则需要定向到不同的视图。
public ActionResult UserMaintenance()
{
if (User.Identity.IsAuthenticated)
{
return View();
}
else
{
LogOn.View; //// this is the area that needs help
}
}
我想向用户展示输入登录名和密码的视图....
谢谢你