我有一個表單,用戶可以選擇搜索選項。當用戶點擊「搜索」按鈕, 適當的GET控制器的動作被調用:搜索結果分頁
public ActionResult Search(SearcherViewModel model, int pageNo=1)
{
var results = xService.GetSearchResults(model);
return View("Index", results);
}
GetSearchResults方法不連接到數據庫,而是它調用一些第三方的網絡服務。但這不是主要問題。
因此,URL可以看看如下:
http://localhost/Search?startDate=20120210&offerType=3&foodId=4&&Destination=456
我如何能實現搜索結果的分頁?特別是,我應該如何構建頁碼以及如何使用我的模型?
你有沒有得到這個解決方案? – Vidar 2012-08-31 13:55:13