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