Actually i tried the following also ...
http_request.onreadystatechange = getReply;
http_request.open('POST', url+ '?'+submitString , true);
http_request.setRequestHeader("Content-length", submitString.length);
http_request.setRequestHeader("Connection", "close");
http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http_request.send(submitString);
But nothing Happened!!!
if send it through the url(submitString)and http.send(null) the problem occurs only if submitstring.length()>2082 ..
please correct me if i did any mistakes
Yours
Mohan Karunanidhi
|