Jquery Ajax 제출 서버 에서 중국어 난 장 판 문 제 를 해결 합 니 다.
                                            
 3516 단어  jQuery ajax
                    
해결 방법 을 말씀 드 리 겠 습 니 다. 클 라 이언 트 가 인 코딩 을 하고 서버 에서 디 코딩 을 합 니 다.
클 라 이언 트: var where = escape ($('\ # where'). val ();
서버 쪽:
        public void ProcessRequest(HttpContext context)
        {
            context.Response.Buffer = true;
            context.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
            context.Response.AddHeader("pragma", "no-cache");
            context.Response.AddHeader("cache-control", "");
            context.Response.CacheControl = "no-cache";
            context.Response.ContentType = "text/plain";
            //context1 = context;
            Request = context.Request;
            Response = context.Response;
            Session = context.Session;
            Server = context.Server;
            loginUser = ClientData.GetLogonUser(this.Request);
            string method = Request["action"].ToString();
            System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(method);
            methodInfo.Invoke(this, null);
        }  if (Request["where"] != null)
            {
                strWhere = Server.UrlDecode(Request["where"].ToString());
            }