คำถามติดแท็ก tag-helpers

6
เลือก Tag Helper ใน 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; …

3
วิธีเพิ่มพารามิเตอร์ลิงค์ไปยังตัวช่วยแท็ก asp ใน ASP.NET Core MVC
ฉันมีจำนวนมากประสบการณ์กับ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>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.