Tengo un enlace como este:
<a href='Member/MemberHome/Profile/Id'><span>Profile</span></a>
y cuando hago clic en esto, llamará a esta página parcial:
@{
switch ((string)ViewBag.Details)
{
case "Profile":
{
@Html.Partial("_Profile"); break;
}
}
}
Página parcial _Perfil contiene:
Html.Action("Action", "Controller", model.Paramter)
Ejemplo:
@Html.Action("MemberProfile", "Member", new { id=1 }) // id is always changing
Mi duda es que, ¿cómo puedo pasar este "Id" a la parte model.parameter ?
Mis controladores son:
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);
}