Using ASP MVC, I have the following Action link,
<a href="@Url.Action("Page", "Content", new { publicationId = publication.PublicationId })">@publication.Title</a>
for the controller action
public ActionResult Page(int publicationId)
Which works, but the URL looks like this
Content/Page?publicationId=129
and I prefer it to look like
Content/Page/129
Is there anyway to make that change?