How can I pass parameters to an Action using Html.Action() in ASP.NET MVC?
You could specify additional data in the RouteValues property like this.
Html.Action("ActionName","Controller", new { id = 1 })
You could specify additional data in the RouteValues property like this.
Html.Action("ActionName","Controller", new { id = 1 })