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