How to use Razor Pages hierarchy with multiple route parameters
By FoxLearn 2/18/2024 9:29:31 AM 271
This post shows you how to use multiple routing attributes in .net core razor pages
For example:
Pages/Blogs/id
@page "/Blogs/{id:int}"
and OnGetAsync
public async Task<IActionResult> OnGetAsync(int id){ }
Pages/Blogs/Items/itemid/Posts/id
@page "/Blogs/Items/{itemid:int}/Posts/{id:int}"
And you could get id by using
public async Task<IActionResult> OnGetAsync(int id, int itemid){ }
- How to fix 'DbContextOptionsBuilder' does not contain a definition for 'UseSqlServer'
- Unable to resolve service for type 'Microsoft.AspNetCore.Identity.RoleManager'
- HTTP Error 500.30 ASP.NET Core app failed to start
- How to Use IExceptionHandler in ASP.NET Core
- How to custom exception handling in ASP.NET Core
- How to create a custom AuthorizeAttribute in ASP.NET Core
- How to manually resolve a type using the ASP.NET Core MVC
- Differences Between AddTransient, AddScoped, and AddSingleton
Categories
Popular Posts
Material Lite Admin Template
11/14/2024
Freedash bootstrap lite
11/13/2024
RuangAdmin Template
11/17/2024
Responsive Animated Login Form
11/11/2024