修改一些BUG
This commit is contained in:
34
MvcApplication1/Global.asax.cs
Normal file
34
MvcApplication1/Global.asax.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
|
||||
namespace MvcApplication1
|
||||
{
|
||||
// 注意: 有关启用 IIS6 或 IIS7 经典模式的说明,
|
||||
// 请访问 http://go.microsoft.com/?LinkId=9394801
|
||||
|
||||
public class MvcApplication : System.Web.HttpApplication
|
||||
{
|
||||
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 } // 参数默认值
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
protected void Application_Start()
|
||||
{
|
||||
AreaRegistration.RegisterAllAreas();
|
||||
|
||||
RegisterRoutes(RouteTable.Routes);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user