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.
26 lines
584 B
C#
26 lines
584 B
C#
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 }
|
|
);
|
|
|
|
}
|
|
}
|
|
}
|