• ASP.NET MVC Route Basic


    When the application first starts up (i.e., when Application_Start() runs), this code
    populates a global static RouteCollection object called RouteTable.Routes. That’s where the
    application’s routing configuration lives.

    MapRoute() adds an entry to the routing configuration.

    正常写法:

    routes.MapRoute(
    "Default"// Route name
    "{controller}/{action}/{id}"// URL with parameters
    new { controller = "Home", action = "Index", id = "" } // Parameter defaults
    );

    等价于:

    Route myRoute = new Route("{controller}/{action}/{id}"new MvcRouteHandler())
    {
    Defaults = new RouteValueDictionary( new {
    controller = "Home", action = "Index", id = ""
    })
    };
    routes.Add("Default", myRoute);
    技术改变世界
  • 相关阅读:
    with异常
    内建函数的重写
    布尔测试函数重写
    函数重写
    类中的对象属性管理函数
    类中的迭代器__iter__
    多继承
    多态
    封装
    深入理解Java:类加载机制及反射
  • 原文地址:https://www.cnblogs.com/davidgu/p/2398366.html
Copyright © 2020-2023  润新知