ビューページがあります
私のビューページ
<div id="beReplaced">
@Ajax.ActionLink("please click on me to bring the partial view",
"PatrialViewToBeCalled",
new AjaxOptions()
{UpdateTargetId = "beReplaced",
InsertionMode = InsertionMode.InsertAfter,
HttpMethod="Get",
LoadingElementId = "prgress" })
</div>
私はコントローラーを持っています
public PartialViewResult PatrialViewToBeCalled()
{
var customer = db.Customers.First();
return PartialView("PartialViewThatMustBeShow",customer);
}
しかし、生成されたリンクをクリックすると、部分ビューをdivタグに置き換えたり追加したりする代わりに、新しいページが表示されます。
どうしたの?