我有一个IEnumerable
返回备注列表的视图,但我也有一个菜单,其中包含一个链接,其中包含来自与备注链接的不同实体的学生编号,这很难解释,所以我将发布我的代码
<a href="@Url.Content("~/StudentGegevens/index/"+ Model.LRL_NR)" class="buttonStudentGegevens"><img src="../../images/ViewAccount.png"/> Student gegevens </a>
<a href="@Url.Content("~/StudentGegevens/MedischeInformatie/" +@Model.LRL_NR)" class="buttonMedischeInformatie"><img src="../../images/ViewMedischeInfo.png"/> Medische informatie </a>
<a href="@Url.Content("~/StudentGegevens/BijlageenCommentaar/" +@Model.LRL_NR)" class="buttonBijlagenCommentaar"><img src="../../images/ViewBijlage.png"/> Bijlage en commentaar </a>
aforeach(var item in Model)
行不通,因为我只希望菜单显示一次。
正如您在此处看到的,我将学生编号提供给链接@Model.LRL_NR
,但是使用IEnumerable
视图,您不能这样做@Model.LRL_NR
,有什么方法可以使用@Model.LRL_NR
视图IEnumerable
吗?