gpt4 book ai didi

asp.net-mvc - 如何在 ASP.NET MVC 的下拉列表中发出未编码的 html

转载 作者:行者123 更新时间:2023-12-04 19:19:55 24 4
gpt4 key购买 nike

我想用商标和版权字符填充下拉列表,但看起来它们总是 html 编码,所以我得到的是它们的编码形式。

谢谢你的帮助。

最佳答案

填充 SelectList 时,对文本使用 HttpUtility.HtmlDecode。下面是一个例子:

<%
var entities = new string[] { "&copy;", "&lt;&quot;&gt;", "&#169;" };
var selectListItems = entities.Select(e => new SelectListItem {
Text = HttpUtility.HtmlDecode(e), Value = "1"
});
%>

<%= Html.DropDownList("exampleDropDownList", selectListItems) %>

关于asp.net-mvc - 如何在 ASP.NET MVC 的下拉列表中发出未编码的 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5147038/

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