问题
Possible Duplicate:
how to decode url param with c#
I want to change all those %20 ect. to spaces ect.
回答1:
HttpUtility.UrlDecode(String) and HttpUtility.UrlEncodeUnicode(String)
回答2:
Use
Server.UrlDecode(string);
来源:https://stackoverflow.com/questions/3792458/how-can-i-decode-a-url-escape-string-in-c