Jquery Ajax 제출 서버 에서 중국어 난 장 판 문 제 를 해결 합 니 다.

3516 단어 jQuery ajax
어떤 친구 가 post 제출 방식 으로 해결 하 겠 다 고 말 하 는 것 을 보고 나 는 methord = "post" 를 지 정 했 지만 해결 할 수 없 었 다.
해결 방법 을 말씀 드 리 겠 습 니 다. 클 라 이언 트 가 인 코딩 을 하고 서버 에서 디 코딩 을 합 니 다.
클 라 이언 트: 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());
            }

좋은 웹페이지 즐겨찾기