【发布时间】:2019-01-27 17:29:45
【问题描述】:
我正在学习 ASP.NET MVC。表单提交后,我想在主视图的提交按钮下显示一条带有部分视图的成功消息。
<form action="myactionLInk" method="post">
<input type="text" name="Name" placeholder="Enter name here..."/>
<input type="submit" value="Submit" />
</form>
// Here would be some code to load partialview
<div>
@Html.Partial("_userpartial")
</div>
这是我的UserContoller:
[HttpPost]
public ActionResult userData(FormCollection collection)
{
//Save name, email and contact to ViewBag
return PartialView("_userPartial")
}
这里是_userPartial.cshtml:
<p> Data of @Viewbag.Name successfully saved.</p>
我希望在成功创建时在提交按钮下加载部分视图。我仍在学习 MVC,因此不胜感激。
【问题讨论】:
标签: c# asp.net-mvc