ASP.NET ActionLink到创建的View不起作用

时间:2014-12-12 21:04:57

标签: asp.net-mvc

前3行是索引页面的标准。我用Razor创建了一个名为“Rijbewijs”的新视图页面

@Html.ActionLink("Edit", "Edit", new { id=item.ID }) |
@Html.ActionLink("Details", "Details", new { id=item.ID }) |
@Html.ActionLink("Delete", "Delete", new { id=item.ID }) |
@Html.ActionLink("Rijbewijs", "Rijbewijs", new { id=item.ID })

前3个链接正在运行,我对新版本做了什么错误?

下面的代码就是我在View Rijbewijs中的代码:

@model Autorijschool3.Models.Instructeur

@{
    ViewBag.Title = "Rijbewijs";
}

任何人都可以帮我吗?

0 个答案:

没有答案