我一直无法成功完成这项工作!
在视图中...
@model Project.Models.Account.ForgotPasswordModel
@{
ViewBag.Title = "Forgot Password";
}
<h2>ForgotPassword</h2>
<span id='@ViewBag.ReplaceID'>
@Html.Partial("_ForgotPasswordUserNameAjax", ViewData.Model)
</span>
我渲染这个partialView ...
@model Project.Models.Account.ForgotPasswordModel
@{
this.Layout = null;
}
@using (Ajax.BeginForm("ForgotPassword", new AjaxOptions() { UpdateTargetId = ViewBag.ReplaceID, InsertionMode = InsertionMode.InsertAfter }))
{
@Html.ValidationSummary(true, "Forgot Password was unsuccessful. Please correct the errors and try again.")
<div id="login" class="box">
<fieldset>
<h2>Account Information</h2>
<div class="inside">
<div class="editor-label">
@Html.LabelFor(m => m.Username)
</div>
<div class="editor-field">
@Html.TextBoxFor(m => m.Username)
<br />
@Html.ValidationMessageFor(m => m.Username)
<br />
</div>
<p>
<input type="submit" value='Submit' />
</p>
</div>
</fieldset>
</div>
}
而这个控制器动作...
[HttpPost]
public PartialViewResult ForgotPassword(ForgotPasswordModel model)
{
if (String.IsNullOrEmpty(model.Username))
{
ModelState.AddModelError("Username", ForgotPasswordStrings.USER_NAME_REQUIRED);
}
else
{
bool isGood = false;
model.Question = this._security.ValidateUserNameGetSecurityQuestion(model.Username, out isGood);
if (!isGood)
{
ModelState.AddModelError("Username", ForgotPasswordStrings.USER_NAME_INVALID);
}
}
PartialViewResult retVal = null;
if (ModelState.IsValid)
{
retVal = PartialView("ForgotPasswordAnswerAjax", model);
}
else
{
retVal = PartialView("_ForgotPasswordUserNameAjax", model);
}
return retVal;
}
但是,每一次视图仅返回PartialView,而不包含在布局中。(所以我的PartialView在屏幕上。除此之外,什么都没有。)我尝试了一些我在网上找到的东西...
http://www.compiledthoughts.com/2011/01/aspnet-mvc-razor-partial-views-with.html
http://stackoverflow.com/questions/4655365/mvc3-submit-ajax-form
但是没有任何东西可以解决这个问题。我已经将InsertionMode更改为所有值,并且没有更改。我已经将@ Html.Partial更改为类似的代码块
@ {
Html.RenderPartial(“ _ ForgotPasswordUserNameAjax”,ViewData.Model);
}。
那不行...
我的想法(和耐心)用光了!
请帮忙!
最佳答案
编辑
PEBKAC。
我忘了升级项目时,我添加了新的jquery.unobtrusive-ajax.js文件,但从未将它们包括在_Layout.cshtml页面中。已添加该库,解决了该问题。对不起大家!
原始帖子
我开始认为这是一个错误。再次获取未转换的项目(MVC2),并将其转换为MVC3。我将所有原始页面保留为aspx / ascx格式,然后运行了该项目。我尝试过该页面。仍然出现相同的问题。回到MVC2,它工作正常。再次尝试了MVC3,问题再次发生。
我使用与此非常相似的页面转换了项目...
http://mattsieker.com/index.php/2010/11/21/converting-asp-net-mvc2-project-to-mvc3/
关于asp.net-mvc - ASP.net MVC3-具有Ajax回发的Razor View 和部分 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4888521/