如何在ASP.NET Core MVC中将链接参数添加到ASP标记助手

编程入门 行业动态 更新时间:2024-10-10 04:25:21
本文介绍了如何在ASP.NET Core MVC中将链接参数添加到ASP标记助手的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我对 ASP.NET MVC 1-5 有很多经验.现在,我学习了 ASP.NET Core MVC ,并且必须传递参数以链接到页面中.例如,我有以下 Action

I have a lot of experience with ASP.NET MVC 1-5. Now I learn ASP.NET Core MVC and have to pass a parameter to link in page. For example I have the following Action

[HttpGet] public ActionResult GetProduct(string id) { ViewBag.CaseId = id; return View(); }

如何使用标签助手来实现此操作的链接?

How can I implement the link for this action using tag helpers?

<a asp-controller="Product" asp-action="GetProduct">ProductName</a>

推荐答案

您可以使用属性前缀asp-route-为路由变量名称添加前缀.

You can use the attribute prefix asp-route- to prefix your route variable names.

示例:

<a asp-controller="Product" asp-action="GetProduct" asp-route-id="10"> ProductName</a>

更多推荐

如何在ASP.NET Core MVC中将链接参数添加到ASP标记助手

本文发布于:2023-11-03 05:15:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1554321.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:中将   标记   助手   参数   链接

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!