我在嘗試提供一個鏈接來過濾搜索結果。Html.ActionLink問題
<%= Html.ActionLink("Filter Results", "Index", new { page = Model.RestaurantList.PageIndex(), searchText = Model.SearchText, useFilter = true, filterOption = Model.FilterOption, filterText = Model.FilterText }, null)%>
控制器定義是這樣
public ActionResult Index(int? page, string searchText, bool useFilter, string filterText, string filterOption)
然而,當我調試此值沒有被正確設置,即使是useFilter變量。
我的鏈接呈現本地主機的/ home /索引/真的嗎?頁= 0
任何想法如何解決這一問題?
這是一個路線問題。我忽略了我添加路線的順序。 – ddd 2009-07-23 13:12:10