文章出處

  public class RouteConfig
    {
        private static string[] namespaces = new string[1] { "Best.Site.Areas.BestPalace" };
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.IgnoreRoute("ActiveReports.ReportService.asmx/{*pathInfo}");
            routes.IgnoreRoute("ActiveReportService.asmx/{*pathInfo}");
            routes.IgnoreRoute("{*allActiveReport}", new { allActiveReport = @".*\.ar10(/.*)?" });

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}"
                ,
                defaults: new { controller = "MenuAddress", action = "Index", id = UrlParameter.Optional },
                namespaces: namespaces
            ).DataTokens["area"] = "BestPalace";
        }
    }

 


文章列表




Avast logo

Avast 防毒軟體已檢查此封電子郵件的病毒。
www.avast.com


全站熱搜
創作者介紹
創作者 大師兄 的頭像
大師兄

IT工程師數位筆記本

大師兄 發表在 痞客邦 留言(0) 人氣()