我正试图为“区域”铺设我的道路,我有以下需要允许的URLs:
- http://localhost/Review/Setup
- http://localhost/Review/Setup/65
- http://localhost/Review/Setup/_AjaxGetMember?ReviewId=53
Area = Review | Controller = Setup | Action = Index
因此,对于《欧洲经济、社会、文化权利国际公约》,它们应当:
- http://localhost/Review/Setup/Index
- http://localhost/Review/Setup/Index/65
- http://localhost/Review/Setup/_AjaxGetMember?ReviewId=53
这里是该地区目前登记的路线。
context.MapRoute(
"Review_default",
"Review/{controller}/{action}/{id}",
new
{
action = "Index",
id = UrlParameter.Optional
}
);
现在,在我的第一份清单工作中,有1和3份,但2份没有将索引列入《欧洲刑法》。 我可以补充的是,这些URLs的工作使得不必在URL中添加或显示指数?
谢谢。