我使用ajaxform和MVC。MVC控制器在更新Div內容前返回內容
如何更新像 return RedirectToAction("action","controller")
但之前調用諸如回報Content("Successfully update")
消息JavaScript或無javascript格的內容?
像 控制器:
if(Success)
{
return Content("Successfully updated");
}
else
{
return Content("Error");
}
剃刀:
<div id="result">
<form action="/controller/action" data-ajax-update="#result"
data-ajax="true" data-ajax-method="POST" data-ajax-mode="replace" method="post ">
<!-- Inputs was here -->
</form>
<div id="Content ">
<!-- DataList (partial content) was here -->
</div>
請注意,模型 - 視圖 - 控制器標籤有關該模式的問題。 ASP.NET-MVC實現有一個特定的標籤。 –