zoukankan      html  css  js  c++  java
  • MVC:分页改进URL

    http://localhost/?page=2

       

    可以根据"可组合URL"创建一种更具吸引力的URL方案:

    http://localhost/page2

       

    public static void RegisterRoutes(RouteCollection routes)  

            {  

                routes.IgnoreRoute("{resource}.axd/{*pathInfo}");  

        

                routes.MapRoute(  

                name: null,  

                url: "Page{page}",  

                defaults: new { Controller = "Product", action = "List" }  

                );  

        

                routes.MapRoute(  

                    name: "Default",  

                    url: "{controller}/{action}/{id}",  

                    defaults: new { controller = "Product", action = "List", id = UrlParameter.Optional }  

                );  

            }  

       

    重要的是在已有的 Default 路由之前天津唉纸条路由。

  • 相关阅读:
    open jdk
    llvm 编译
    llvm Array Bounds Check Elimination
    tmux 共享窗口大小
    llvm pass
    llvm code call graph
    llvm -O 经历过那些pass
    tcmalloc asan
    web ide
    eclipse配置
  • 原文地址:https://www.cnblogs.com/tangge/p/6378188.html
Copyright © 2011-2022 走看看