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