我正在檢查用戶是否已通過身份驗證,並且如果用戶未通過身份驗證,則需要指向其他視圖。c#mvc3加載不同的視圖
public ActionResult UserMaintenance()
{
if (User.Identity.IsAuthenticated)
{
return View();
}
else
{
LogOn.View; //// this is the area that needs help
}
}
我想目前用戶視圖輸入登錄名和密碼....
謝謝