日期:2014-05-17  浏览次数:20448 次

mvcpager 2.0 AjaxSearchPost没效果
请问下这个加载需要引用的js库都有哪些
我引用了:
jquery-1.8.2.js
jquery.unobtrusive-ajax.min.js
代码都是照着杨涛老师写的例子搬过来的

Search.cshtml
<p style="font-size: 20px; font: bold;">快速查找</p>
@using (Ajax.BeginForm("Search", new RouteValueDictionary { { "id", "" } }, new AjaxOptions { UpdateTargetId = "car", InsertionMode = InsertionMode.Replace }, new RouteValueDictionary { { "id", "searchForm" } }))
{
    <span>用户名:</span><input type="text" name="title" id="title" style="width: 120px" />
    <input type="submit" value="搜索(S)" accesskey="S" />

}

<div id="car">
    @Html.Partial("_Search", ViewBag.Car_OwnersList as List<huoshan.Models.Car_Owners>)
</div>
@section Scripts
{
    @{Html.RegisterMvcPagerScriptResource();}
    <script type="text/javascript" src="/Scripts/jquery.unobtrusive-ajax.min.js"></script>}



_Search.cshtml

<div>
    <div style="float: left; width: 50%">共 @Model.TotalPageCount 页 @Model.TotalItemCount 条记录,当前为第 @Model.CurrentPageIndex 页</div>
    @Ajax.Pager(Model, new PagerOptions { PageIndexParameterName = "id", ShowPageIndexBox = true, PageIndexBoxType = PageIndexBoxType.DropDownList, ShowGoButton = false }, new MvcAjaxOptions { UpdateTargetId = "car", HttpMethod = "Post", DataFormId = "searchForm" }, new { style = "float:right" })
</div>



 public ActionResult SearCh(int id = 1)
        {
            List<Car_Owners> car = new List<Car_Owners>();
            PagedList<Car_Owners> result = new PagedList<Car_Owners>(car, 0, 0);
            ViewBag.Car_OwnersList = result;
            if (Request.IsAjaxRequest())
                return PartialView("_Search", ViewBag.Car_OwnersList);
            return View(ViewBag.Car_OwnersList);
        }
        [HttpPost]
        public ActionResult SearCh(string title, string author, int id = 1)
        {
            return ajaxSearchPostResult(title, author, id);
        }
        private ActionResult ajaxSearchPostResult(string title, string author, int id = 1)
&nb