转义特殊字符

发布于 2024-08-18 04:03:59 字数 416 浏览 5 评论 0原文

我下面的代码似乎正在编码特殊字符,我该如何让它转义这些字符?

 str1 += myGridView.Rows[idx].Cells[2].Text + ";";

当我检查网格视图 html 源时,表格单元格文本为 = 'http://news.google.co.uk/nwshp?ie=UTF-8&hl=en&tab=wn&q=Clifford+ Chance&output=rss'

但 str1 的值为 'http://news.google.co.uk/nwshp?ie=UTF-8&hl=en&tab= wn&q=Clifford+Chance&output=rss;'

非常感谢,

My code below seems to be encoding special charcters how do I get it to escape these?

 str1 += myGridView.Rows[idx].Cells[2].Text + ";";

When i check the grid view html source the table cell text is = 'http://news.google.co.uk/nwshp?ie=UTF-8&hl=en&tab=wn&q=Clifford+Chance&output=rss'

But the value for str1 is 'http://news.google.co.uk/nwshp?ie=UTF-8&hl=en&tab=wn&q=Clifford+Chance&output=rss;'

Many Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我要还你自由 2024-08-25 04:03:59

您在这里看到的是 HTML 控件将您的文本编码为 HTML,以便它像在字符串中一样显示在客户端的浏览器中。

您可以使用 HttpUtility.HtmlDecode(string) 解码 HTML 编码字符串。

What you're seeing here is the HTML control encoding your text to HTML so it appears in the client's browser as it does in your string.

You can use HttpUtility.HtmlDecode(string) to decode an encoded string of HTML.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文