asp.net mvc partialview @ Ajax.ActionLink不起作用

前端之家收集整理的这篇文章主要介绍了asp.net mvc partialview @ Ajax.ActionLink不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个视图页面

我的观点页面

<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标签.

有什么问题?

解决方法

可能是你错过了:
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.js")" type="text/javascript"></script>

在主视图中.这告诉主视图识别ajax助手.

原文链接:/aspnet/248748.html

猜你在找的asp.Net相关文章