I have three tabs for order status , I used ajax to send status to asp.net function and fetch the data into the table in view , now I need to use pagination so I put below PagedListPager under the table its work for first tab but the others I could not pass the status of them , each time I clicked on pages its reload the page to first tab .
Page @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) of @Model.PageCount
@Html.PagedListPager(Model, page => Url.Action("Ownerships",
new { page, sortOrder = ViewBag.CurrentSort, currentFilter = ViewBag.CurrentFilter, status = ViewBag.status }))