using System.Web.Mvc; namespace DSWeb.Areas.CommMng { public class CommMngAreaRegistration : AreaRegistration { public override string AreaName { get { return "CommMng"; } } public override void RegisterArea(AreaRegistrationContext context) { context.MapRoute( "CommMng_default", "CommMng/{controller}/{action}/{id}", new { action = "Index", id = UrlParameter.Optional } ); } } }