Blazor routing with multiple parameters [Answered]
is there someone who can explain why my blazor page isn't taking 2 parameters in the route? I've got this as route (example):
/user/{previous}/print/{userid}
/user/{previous}/print/{userid}
which resuls in one of two things (at the moment):
/user/profile/print/[userid]
/user/profile/print/[userid]
or
/user/admin-something/print/[userid]
/user/admin-something/print/[userid]
but only the first of the two seems to actually present the page I desire, the second one however, gives me the "Sorry, there's nothing at this address" screen.... What am I missing?