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.
D7QUANTAI/DSWeb/Areas/RptMng/RptMngAreaRegistration.cs

25 lines
564 B
C#

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