获得了一个项目,其中包含与 MVC 3 Razor 控制器/视图一起运行的标准 Asp.Net (aspx) 页面。想将aspx页面设置为默认页面。目前,它在打开根目录时会选择以下路线
routes.MapRoute(
"MVCDefault", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
(它现在托管在 IIS7 中,它在 Visual Studio 中运行良好)。