gpt4 book ai didi

c# - 什么是 Asp.Net Core TagHelper 等同于带脚本的 Html.ActionLink

转载 作者:行者123 更新时间:2023-11-30 23:00:18 26 4
gpt4 key购买 nike

我想在删除前提示一个确认对话框。我找到了 this在这里回答效果很好

@Html.ActionLink(
"Delete",
"Delete",
new { id = post.OriginalPost.ID },
new { onclick = "return confirm('Are you sure you wish to delete this post?');" });

但据我所知,在 Core one 中应该避免使用 ActionLinks。那么有没有标签助手或不同的方法来做到这一点?

最佳答案

您通常会使用 AnchorTagHelper:

<a asp-action="Delete" asp-route-id="@post.OriginalPost.ID" 
onclick="return confirm('Are you sure you wish to delete this post?');">Delete</a>

关于c# - 什么是 Asp.Net Core TagHelper 等同于带脚本的 Html.ActionLink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51657318/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com