我用這個Ajax.BeginForm如何使用Ajax.BeginForm OnSuccess和OnFailure方法?
<% using(Ajax.BeginForm("Create","Mandate",
new AjaxOptions() {
OnSuccess = "GoToMandates",
OnFailure = "ShowPopUpError"
})) {%>
<% } %>
什麼我需要在CONTROLER趕上這個OnSucces和onFailure處寫。
因爲我的onSuccess需要證明成功的消息
onFailure處我需要顯示othere消息。
在我的控制器
Public ActionResult GetSomething(FromCollection collection)
{
if(exists == null)
{
//OnSuccess
}
else
{
//OnFailure
}
}
能anydboy幫我..怎麼抓呢?
感謝
感謝NIcky,我需要在控制器中寫什麼?謝謝 – kumar 2011-04-01 19:50:28
噢,我明白你想在那裏做什麼。我相信AjaxOptions OnSuccess和OnError僅與XHR請求相關,並且與Controller無關。我會快速思考,然後我會更新我的答案。 – 2011-04-01 19:58:15
是否可以調用jquery函數呢? – hidden 2011-12-12 17:55:15