1

我在我的 StateCode 文本框中输入了文本“J&K”(没有 Cotes)并将其保存到数据库(SqlServer)中。但它保存为 J & amp; K. 所以我无法使用 J&K(主键)获取保存的数据。如何在将文本保存到数据库之前禁用文本编码?

4

2 回答 2

1

您可以使用HttpUtility.HtmlDecode 方法删除编码。

于 2013-03-26T06:42:01.293 回答
0

用于Server.HtmlEncode("YourTextWith<and>Characters")此活动。

将您的输出文本包装在其中。

或者,

这也有帮助>>

System.Web.UI.HtmlControls.HtmlTextArea textBox = new System.Web.UI.HtmlControls.HtmlTextArea();
textBox.Value = "j&k";

希望它有帮助。

于 2013-03-26T06:41:51.643 回答