HttpWebResponse显示标题C#中的垃圾字符

时间:2012-10-09 11:52:17

标签: c# asp.net httpwebresponse

以下是在Response.AddHeaders

中返回波斯语单词的代码段

farsi text

这是一个代码片段,通过HttpWebResponse获取响应并显示该波斯语单词的垃圾字符

junk text

我很好奇为什么它会返回这些垃圾字符?我该如何纠正这个问题?在我的aspx页面上,垃圾文本显示如下 -

output text

请尽快帮助......

由于

1 个答案:

答案 0 :(得分:0)

我发现unicode编码很有用。

pwd = HttpUtility.UrlEncodeUnicode(pwd); // encode string to unicode

pwd = HttpUtility.UrlDecode(pwd); // decode unicode to string