.NET调用服务转换&到&

时间:2012-01-06 21:10:55

标签: c# .net web-services

当我们从.NET客户端拨打电话到服务时,它正在转换&到&(html编码版本)。无论如何都要停止将字符串值转换为&并让它保持“&”当服务将提取它。

1 个答案:

答案 0 :(得分:0)

更好的解决方案可能是解码服务器端的字符串:

String DecodedString = Server.UrlDecode(EncodedString);