asp.net mvc 中 要 访问/ Views/Admin/Order/Index.aspx页面 在 路由里该如何设置?
publicstaticvoidRegisterRoutes(RouteCollectionroutes){routes.IgnoreRoute("{resource}....
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 } // 参数默认值
);
} 展开
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
//访问如图所示文件 在这里该如何写?
routes.MapRoute(
"Default", // 路由名称
"{controller}/{action}/{id}", // 带有参数的 URL
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // 参数默认值
);
} 展开
展开全部
有一个对象是允许MVC项目内行动WebFrom程序的,就是对aspx文件解析
RouteTable.Routes.RouteExistingFiles = true;
在Application_Start()事件里加上就行了,这样就可以访问Index.aspx了,也可以调试asp.net(非MVC框架)的页面了
RouteTable.Routes.RouteExistingFiles = true;
在Application_Start()事件里加上就行了,这样就可以访问Index.aspx了,也可以调试asp.net(非MVC框架)的页面了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
mvc几?mvc4都出来了老哥.还自己配置呢,.过时了
参考资料: http://wenku.baidu.com/view/5561f4136edb6f1aff001f51.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询