在Ajax请求中,为了保证字符串能正确传输,我使用escape转换字符串。 var paramValue=escape("中文"); 那么在asp.net的后台代码中,如何解码呢? string paramValue = Server.UrlDecode(Request["content"]);