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/MvcContainer/MvcContainerRegistration.cs

26 lines
584 B
C#

2 years ago
using System.Web.Mvc;
namespace DSWeb.MvcContainer
{
public class MvcShippingRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "MvcContainer";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"MvcContainer_default",
"MvcContainer/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
}