gpt4 book ai didi

c# - 在 ajax ActionLinks 中使用 ×

转载 作者:太空宇宙 更新时间:2023-11-03 10:35:29 25 4
gpt4 key购买 nike

我正在尝试使用 html 特殊字符 ×显示一个×。

在我的 Razor View 中使用以下代码

@Ajax.ActionLink("×", "LogTable", "Log", null, null, null)

但是上面的不识别 ×作为一个特殊字符而不是作为一个字符串,它显示 ×而不是×。有没有一种特定的方法来逃避它,所以它的工作原理如下

<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
&times;
</button>

谢谢

最佳答案

你应该使用 HttpUtility.HtmlDecode功能:

@Ajax.ActionLink(HttpUtility.HtmlDecode("&times;"), "LogTable", "Log", null, null, null)

关于c# - 在 ajax ActionLinks 中使用 ×,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27980606/

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