post数据乱码


Warning: Undefined array key "HTTP_REFERER" in /www/wwwroot/prod/www.enjoyasp.net/wp-content/plugins/google-highlight/google-hilite.php on line 58

1,前台js传数据时用utf-8 encodeURIComponent用应用utf-8加码
例
url = url + "&Receiver=" + encodeURIComponent("郑生");
2,后台web.config更改编码方式.
  <globalization requestEncoding="utf-8" responseEncoding="gb2312"/>