我想在我的ASP MVC3應用程序中使用AJAX,但我有一個問題。ASP.NET MVC3和AJAX問題
這裏是我的視圖代碼:
@Html.Partial("_Topic", Model)
@Ajax.ActionLink("Afficher les commentaires", "ShowLastArticleComments",
new AjaxOptions()
{
HttpMethod = "GET",
UpdateTargetId = "showComments",
InsertionMode = InsertionMode.Replace
})
<div id="showComments">
</div>
}
這裏是我的控制器方法:
public PartialViewResult ShowLastArticleComments()
{
blablabla
return PartialView("_Comments", comments);
}
當我點擊ajaxed鏈接,它加載一個全新的頁面,而不是僅僅更換的div由我的PartialView調用「_Comments」。爲什麼?
感謝,
風箏
是的,問題來自那裏。我不知道爲什麼,但unobtrusive-ajax.js沒有正確加載。 – 2011-06-03 11:26:37