ฉันมีลิงค์เช่นนี้:
<a href='Member/MemberHome/Profile/Id'><span>Profile</span></a>
และเมื่อฉันคลิกที่นี่มันจะเรียกหน้านี้บางส่วน:
@{
switch ((string)ViewBag.Details)
{
case "Profile":
{
@Html.Partial("_Profile"); break;
}
}
}
หน้า _Profile บางส่วนประกอบด้วย:
Html.Action("Action", "Controller", model.Paramter)
ตัวอย่าง:
@Html.Action("MemberProfile", "Member", new { id=1 }) // id is always changing
ข้อสงสัยของฉันคือฉันจะส่ง "Id" นี้ไปยังส่วน model.parameter ได้อย่างไร
ตัวควบคุมของฉันคือ:
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);
}