我对MVC非常陌生,但我正在与一个可能非常基本且明显的问题作斗争。
在我的HomeController上,我有:
[HttpGet]
public ViewResult Index()
{
int hour = DateTime.Now.Hour;
var reply = User.Identity.IsAuthenticated ? User.Identity.Name + " is Logged in!" : hour < 12 ? "Good morning" : "Good afternoon";
ViewBag.Greeting = reply;
return View();
}
当我启动我的应用程序时,此代码会运行。
该页面作为登录屏幕的链接。
<div>
@Html.ActionLink("Login", "ShowLoginScreen")
</div>
页面加载,用户登录。
加载登录cshtml文件,用户输入用户名/密码:
<body>
@using (Html.BeginForm())
{
@Html.ValidationSummary()
<p>Username: @Html.TextBoxFor(x=>x.Username)</p>
<p>Password: @Html.TextBoxFor(x=>x.Password)</p>
<p><input type="submit" value="Login"/></p>
}
</body>
单击Login时,它会调用我的HomeController中的方法:
[HttpPost]
public ActionResult ShowLoginScreen(Login login)
{
if (ModelState.IsValid)
{
var reply = new BasicFinanceService.UserService().Authenticate(login.Username,
Security.EncryptText(login.Password));
if(reply.Id != 0)
FormsAuthentication.SetAuthCookie(reply.Username, false);
return View("Index");
}
return View();
}
代码运行,它返回到Index,但是Home Controller中用于'Index'的方法不会运行。页面刚刚在我的“公共ViewResult索引()”被调用时没有任何断点而被渲染。
谁能告诉我哪里出错了?
答案 0 :(得分:5)
这是因为您只是使用以下命令返回视图的输出:
return View("Index");
实际上并没有调用控制器动作,只是返回视图。要做你想做的事,你需要使用RedirectToAction
:
return RedirectToAction("Index");