Mam taki link:
<a href='Member/MemberHome/Profile/Id'><span>Profile</span></a>
a kiedy to kliknę, wywoła tę częściową stronę:
@{
switch ((string)ViewBag.Details)
{
case "Profile":
{
@Html.Partial("_Profile"); break;
}
}
}
Częściowa strona _Profile zawiera:
Html.Action("Action", "Controller", model.Paramter)
Przykład:
@Html.Action("MemberProfile", "Member", new { id=1 }) // id is always changing
Wątpię, jak mogę przekazać to „Id” do części model.parameter ?
Moimi kontrolerami są:
public ActionResult MemberHome(string id)
{
ViewBag.Details = id;
return View();
}
public ActionResult MemberProfile(int id = 0)
{
MemberData md = new Member().GetMemberProfile(id);
return PartialView("_ProfilePage",md);
}