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