创建从一个控制器视图导航到另一个控制器视图的链接的语法是什么?以下是应该允许用户从视图导航到Index.cshtml
视图的代码。我需要传递 的值,以便页面确切地知道要显示谁。FollowUpItems
Details.cshtml
Agent
item.Key1
Details.cshtml
我收到以下错误,但我不知道这意味着什么(我对任何缺乏信息表示歉意,我对 ASP MVC 还是很陌生):
'参数字典包含'Monet.Controllers.FollowUpController'中方法'System.Web.Mvc.ViewResult Details(Int32)'的不可空类型'System.Int32'的参数'id'的空条目。可选参数必须是引用类型、可空类型或声明为可选参数。参数名称:参数'
<td>
@Html.ActionLink(item.Key1, "Details", "Agent", new { id = item.Key1 })
</td>
这是我试图导航到的页面的 Index() 方法标题:
public ActionResult Index(string searchString, string sortOrder, string currentFilter, int? page)
{