I'm asking how to do a link with @Url.Action
in a Razor view to make a link like
Controller/Action/123
I already made @Url.Action("Action","Controller", new { @ViewBag.ID })
but it makes me a link like
Controller/Action?ID=123
How do I make a URL without the querystring in the razor view?