Làm cách nào tôi có thể truyền tham số cho chế độ xem một phần trong mvc 4
Tôi có một liên kết như thế này: <a href='Member/MemberHome/Profile/Id'><span>Profile</span></a> và khi tôi nhấp vào nó, nó sẽ gọi trang này một phần: @{ switch ((string)ViewBag.Details) { case "Profile": { @Html.Partial("_Profile"); break; } } } Trang một phần _Profile chứa: Html.Action("Action", "Controller", model.Paramter) Thí dụ: @Html.Action("MemberProfile", "Member", new { id=1 …