Questions tagged «tag-helpers»

6
在ASP.NET Core MVC中选择标签助手
我在ASP.NET Core中需要选择标记帮助器的帮助。 我有一个要绑定到选择标签助手的员工列表。我的员工处于List<Employee> EmployeesList,选定的价值将归入EmployeeId财产。我的视图模型如下所示: public class MyViewModel { public int EmployeeId { get; set; } public string Comments { get; set; } public List<Employee> EmployeesList {get; set; } } 我的员工班级是这样的: public class Employee { public int Id { get; set; } public string FullName { get; set; } } 我的问题是我如何告诉我的选择标签助手在下拉列表中Id显示FullName时将其用作值? …

3
如何在ASP.NET Core MVC中将链接参数添加到ASP标记助手
我对ASP.NET MVC 1-5有很多经验。现在,我学习ASP.NET Core MVC,并且必须传递参数以链接到页面中。例如我有以下操作 [HttpGet] public ActionResult GetProduct(string id) { ViewBag.CaseId = id; return View(); } 如何使用标签助手来实现此操作的链接? <a asp-controller="Product" asp-action="GetProduct">ProductName</a>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.