/{category}/{product}/{id}
/computer/mainboard/13
/{category},{product},{id}
/computer,mainboard,13
public void ConfigureServices(IServiceCollection services) { services.AddRazorPages(opt => { opt.Conventions.AddPageRoute("/Category", "{title},category"); }); }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)