![]() |
VOOZH | about |
dotnet add package DynamicRouting.Kentico.MVC --version 12.29.20
NuGet\Install-Package DynamicRouting.Kentico.MVC -Version 12.29.20
<PackageReference Include="DynamicRouting.Kentico.MVC" Version="12.29.20" />
<PackageVersion Include="DynamicRouting.Kentico.MVC" Version="12.29.20" />Directory.Packages.props
<PackageReference Include="DynamicRouting.Kentico.MVC" />Project file
paket add DynamicRouting.Kentico.MVC --version 12.29.20
#r "nuget: DynamicRouting.Kentico.MVC, 12.29.20"
#:package DynamicRouting.Kentico.MVC@12.29.20
#addin nuget:?package=DynamicRouting.Kentico.MVC&version=12.29.20Install as a Cake Addin
#tool nuget:?package=DynamicRouting.Kentico.MVC&version=12.29.20Install as a Cake Tool
Dynamic Routing for Kentico is a two part system that allows you to automatically handle page requests and route them to certain actions based on the Page Type of the current page. This is done through the automatic generation of Url Slugs that help Kentico identify which Page you are requesting (based on the Url), and Assembly Attribute tags to route that page appropriately.
While the main module consistant of a Kentico "Mother" Nuget package (DynamicRouting.Kentico) and an MVC Nuget Package (DynamicRouting.Kentico.MVC), there is a stand alone MVC package, housed on a separate branch that you can use if you want the Dynamic Routing Attributes without the Automatic Url Slug Generation.
Rebuild Site to generate your Url Slugs for the first time.route = routes.MapRoute(
name: "DynamicRouting",
url: "{*url}",
defaults: new { defaultcontroller = "HttpErrors", defaultaction = "Index" },
constraints: new { PageFound = new DynamicRouteConstraint() }
);
route.RouteHandler = new DynamicRouteHandler();
builder.RegisterType(typeof(BaseDynamicRouteHelper)).As(typeof(IDynamicRouteHelper));| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net461 net461 is compatible. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
Showing the top 2 NuGet packages that depend on DynamicRouting.Kentico.MVC:
| Package | Downloads |
|---|---|
|
Authorization.Kentico.MVC.DynamicRouting
Authorization attribute that integrates with Kentico user permissions, including module permissions and page ACL permissions, leveraging the DynamicRouting.Kentico.MVC library for retreiving the page. |
|
|
RM.DynamicRoutingWildcards.Kentico.MVC
Extends DynamicRouting.Kentico.MVC to support wildcards in urls which map to properties within Controller actions |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 12.29.20 | 3,564 | 2/19/2021 |
| 12.29.18 | 3,613 | 9/24/2020 |
| 12.29.17 | 11,855 | 7/8/2020 |
| 12.29.16 | 964 | 6/15/2020 |
| 12.29.15 | 762 | 6/12/2020 |
| 12.29.14 | 4,220 | 4/30/2020 |
| 12.29.13 | 710 | 4/30/2020 |
| 12.29.12 | 1,238 | 4/9/2020 |
| 12.29.11 | 960 | 3/30/2020 |
| 12.29.10 | 1,187 | 2/27/2020 |
| 12.29.9 | 2,706 | 2/7/2020 |
| 12.29.8 | 1,314 | 1/23/2020 |
| 12.29.7 | 1,717 | 1/5/2020 |
| 12.29.6 | 2,030 | 12/18/2019 |
| 12.29.5 | 1,172 | 12/3/2019 |
| 12.29.4 | 746 | 11/29/2019 |
| 12.29.3 | 1,692 | 11/18/2019 |
| 12.29.2 | 744 | 11/12/2019 |
| 12.29.1 | 763 | 11/12/2019 |
| 12.29.0 | 793 | 11/11/2019 |
Fixed bug in the LocalizationContext using the CultureName vs. CultureCode