I have a @Html.ActionLink in a .cshtml which is in my CustomerOrder folder, but I want point to an action method in a different folder.
My actionlink is:
@Html.ActionLink("Order", "/Products/ProductList", new { id = Model.ID }, new { @class = "link-button btn-primary" })
I'm getting an HTTP Error 404.0 - Not Found error and this is the URL:
http://localhost:63549/CustomerOrder/Products/ProductList/1
I want the resulting view to be:
