Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的文本框中,我在 < 和 > 之间输入的字符没有显示在 datalist 控件中。例如,我在文本框中输入,数据保存在数据库中。但是当我调用函数从数据库中获取数据时,值来自数据库,但它没有显示在 datalist 标签控件中。它显示的其他特殊字符,但除了 .
但我想在一个字符串中如何找到完整的字符串并在整个字符串中用 < 和 > 替换 < 和 > 。例如,我们在文本框中输入它,然后在保存到数据库时,它应该在 asp 中另存为 <fff> 。 net.lease 举个例子
我不确定 asp 对 datalist 控件做了什么,但它肯定会将其输出到 html。而在 html 中,“<”和“>”是特殊字符。编写一个方法来替换那些特殊字符。例如,“<”将是 < 和 > 将是 >
对html中特殊字符的引用:
http://www.degraeve.com/reference/specialcharacters.php
我不是 asp 开发人员,但我用 google 搜索了 htmlentities 的同义词到 asp.. 使用 HtmlEncode()