|
@@ -20,6 +20,7 @@ namespace WeApp
|
|
|
routes.MapRoute("Gis", url: "Gis", defaults: new { controller = "ExerciseV2", action = "Gis", id = UrlParameter.Optional });
|
|
routes.MapRoute("Gis", url: "Gis", defaults: new { controller = "ExerciseV2", action = "Gis", id = UrlParameter.Optional });
|
|
|
routes.MapRoute("Qs", url: "Qs/{id}", defaults: new { controller = "ExerciseV2", action = "QueryScore", id = UrlParameter.Optional });
|
|
routes.MapRoute("Qs", url: "Qs/{id}", defaults: new { controller = "ExerciseV2", action = "QueryScore", id = UrlParameter.Optional });
|
|
|
routes.MapRoute("QueryScore", url: "QueryScore/{id}", defaults: new { controller = "ExerciseV2", action = "QueryScore", id = UrlParameter.Optional });
|
|
routes.MapRoute("QueryScore", url: "QueryScore/{id}", defaults: new { controller = "ExerciseV2", action = "QueryScore", id = UrlParameter.Optional });
|
|
|
|
|
+ routes.MapRoute("SelectV1", "SV1", new { controller = "Exercise", action = "Select", id = 0 });
|
|
|
routes.MapRoute("Select", "S", new { controller = "ExerciseV2", action = "Select", id = 0 });
|
|
routes.MapRoute("Select", "S", new { controller = "ExerciseV2", action = "Select", id = 0 });
|
|
|
routes.MapRoute("SelectPage", "S{id}", new { controller = "ExerciseV2", action = "Select", id = 0 });
|
|
routes.MapRoute("SelectPage", "S{id}", new { controller = "ExerciseV2", action = "Select", id = 0 });
|
|
|
|
|
|