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.
我有一个长字符串,必须传递给 wcf web 方法。这个字符串以
\b\0\0\0\0\0\0.....
并且有很多不可打印的符号。我试过 HttpUtility.HtmlEncode 这个字符串,但它不起作用。将所需字符串传递给服务器的唯一方法是使用 HttpUtility.JavaSciptStringEncode 方法。
但是在服务器端,我不知道如何将此字符串解码为以前的状态。HttpUtility.UrlDecode 没有帮助。
如何在服务器端正确解码字符串?
谢谢
我找到了解决方案。我必须Base64在使用前对字符串进行编码HttpUtility.UrlEncode。HttpUtility.JavaSciptStringEncode现在不需要。
Base64
HttpUtility.UrlEncode
HttpUtility.JavaSciptStringEncode