You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/SysMng/SysMngAreaRegistration.cs

25 lines
564 B
C#

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