• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
无忧岛主
实践是检验真理的唯一标准
博客园    首页    新随笔       管理    订阅  订阅
一个.net mvc的例子

 控制器 ( Controller) Product

下面功能主要根据多条件搜索产品的列表的功能

 public ActionResult ProductList(string cityID, string productType,string currentPageIndex,string sortType)
        {
            SearchConditionInfo condtions = new SearchConditionInfo();
            if (string.IsNullOrEmpty(cityID))
            {
                cityID = "17";
            }
            if (string.IsNullOrEmpty(productType))
            {
                productType = ProductType.Hotel;
            }
            if (string.IsNullOrEmpty(sortType))
            {
                sortType = SortType.Default;
            }
            if (string.IsNullOrEmpty(currentPageIndex))
            {
                currentPageIndex = "1";

            }
            condtions.CityID =cityID;
            condtions.Topcount = "300";
            condtions.ItemType = productType;
            condtions.SortType = sortType;
            condtions.PageSize = "30";
            condtions.SortType = sortType;
            
    
            List<ProductInfo> GroupProductInfoList = APIRequsetClient.ProductList(condtions);
          
          
            PagedList<ProductInfo> ProductPageList = GroupProductInfoList.AsQueryable().ToPagedList<ProductInfo>(int.Parse(currentPageIndex), 30);
            ProductPageList.TotalItemCount =GroupProductInfoList.Count;
            ProductPageList.CurrentPageIndex =int.Parse(currentPageIndex);
           
           
            return View( ProductPageList);
            
            
        }
        

视图 View

   接着我们需要有一个在视图做一个超链接这个链接跳到产品列表页ProductList

  @Html.RouteLink("这个是产品分类导航的某一项", "ProductListPage", new { cityID = Model.CurrentCityID, productType = ProductType.Hotel } })   

路由配置(重点)

 

string url = "{0}.html";
routes.MapRoute(
"ProductListPage",//Route name
string.Format(url, "sx/cnblogs/test/{cityID}/{productType}/{currentPageIndex}/{sortType}"),//URL with parameters
new { controller = "Product", action = "ProductList", cityID = "155", productType = "13", currentPageIndex = 1, sortType = 0 }

);

 

如果本文引用了你的文章而未注明,请及时联系我。
posted on 2015-01-13 18:45  无忧岛主  阅读(457)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3