我正在编写一个 ASP.NET 应用程序,它要求用户使用外部 API 登录到服务器。如果用户输入无效的登录凭据,我希望用户使用 Ajax 获得即时反馈。
我的观点
@using (Ajax.BeginForm("Login", "Login", null, new { id = "login-form" }))
{
<label>
User Name: @Html.TextBox("userName", "", new { @class = "input" })
</label>
<label>
Password: @Html.Password("password", "", new { @class = "input" })
</label>
<input type="submit" class="button" value="Login" />
<div id="login-validate">Invalid Login!</div>
}
我的控制器
public ActionResult Login(string userName, string password)
{
// Returns true if connection is valid
if (RepoConnection.verifyAndBindConn(userName, password))
{
return Index(); // Redirect to home page, logged in as new user
}
else
{
return null; // TODO: Don't change view
}
}
有没有办法让控制器不切换视图,而是调用 jQuery 函数来显示错误消息?