我有一个部分视图(登录,使用用户名,密码和提交按钮),部分视图正在我的_layout(materpage)上使用。
所以,在我的_layout页面上,我有:
<div style="text-align: right">
@Html.Partial("_LoginPartial")
</div>
我的_LoginPartial包含以下代码:
@if (Request.IsAuthenticated)
{
<textarea>Welcome!
[ @Html.ActionLink("Log Off", "Logout", "Account")]</textarea>
}
else
{
@Html.Partial("~/Views/Account/Index.cshtml")
}
显示登录框的索引文件如下所示:
@using GalleryPresentation.Models
@model LoginModel
<script src="../../Scripts/jquery.validate.min.js" type="text/javascript"></script>
@using (Html.BeginForm("index", "Account"))
{
<table>
<tr>
<td>@Html.LabelFor(m => m.Username)</td>
<td>@Html.TextBoxFor(m => m.Username)</td>
</tr>
<tr>
<td>@Html.LabelFor(m => m.Password)</td>
<td>@Html.PasswordFor(m => m.Password) kjkj</td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Login"/></td>
</tr>
<tr>
<td colspan="2">@Html.ValidationSummary()</td>
</tr>
</table>
}
在我的AccountCOntroller中,我有以下代码:
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(LoginModel loginModel)
{
if(ModelState.IsValid)
{
var g = new GallaryImage();
var user = g.LoginUser(loginModel.Username, loginModel.Password);
if(user != null)
{
FormsAuthentication.SetAuthCookie(user.username, false);
return RedirectToAction("Index", "Home");
}
ModelState.AddModelError("", "Invalid Username/Password");
}
return View(loginModel);
}
public ActionResult Logout()
{
FormsAuthentication.SignOut();
return RedirectToAction("Index", "Home");
}
我在所有方法上都有断点 - 但它们永远不会被击中。按提交按钮只会将我的URL更改为:
http://localhost:8741/?Username=myusername&Password=mypassword
有人能发现我正在制作的错误吗?
答案 0 :(得分:1)
由于Html.BeginForm默认发出GET请求,因此您从视图中发出GET请求。但是,您的操作只接受POST请求。
您可以更改@using (Html.BeginForm("index", "Account"))
到@using (Html.BeginForm("index", "Account", FormMethod.Post))
。