12345678910111213141516171819202122232425 |
- using System.Web.Mvc;
- namespace ChangFa.Machinery.WebPage.Areas.ComManage
- {
- public class ComManageAreaRegistration : AreaRegistration
- {
- public override string AreaName
- {
- get
- {
- return "ComManage";
- }
- }
- public override void RegisterArea(AreaRegistrationContext context)
- {
- context.MapRoute(
- "ComManage_default",
- "Com/{controller}/{action}/{id}",
- new { action = "Index", id = UrlParameter.Optional },
- new string[] { "ChangFa.Machinery.WebPage.Areas.ComManage.Controllers" }
- );
- }
- }
- }
|