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