标签:style blog http io ar color sp on div
这篇我们主要是生成视图,就是页面。
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Default", // 路由名称
"{controller}/{action}/{id}", // 带有参数的 URL
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // 参数默认值
);
}
标签:style blog http io ar color sp on div
原文地址:http://www.cnblogs.com/mahun/p/4116401.html