zoukankan      html  css  js  c++  java
  • 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);
    技术改变世界
  • 相关阅读:
    Loadrunner日志设置与查看
    Mysqlfunc.c
    loadrunner生成随机uuid的方法
    数据库连接
    FAQ_2
    JAVA VUser
    FAQ_1
    LoadRunner中的Web 函数列表
    MySQL性能诊断与调优
    LoadRunner书籍推荐
  • 原文地址:https://www.cnblogs.com/davidgu/p/2398366.html
Copyright © 2011-2022 走看看