xmlReq = new XMLHttpRequest();
xmlReq.open('POST', url, true);
xmlReq.send(null);
這個程式在IIS 5測試是正常可以work,在IIS6 則會出現411,其他http server則沒有測試。若不傳送訊息的話,則需要改成下列程式
xmlReq = new XMLHttpRequest();
xmlReq.open('POST', url, true);
xmlReq.send("");
如果有傳送內容的話,則在 ii5, iis6都可以正常執行。
No comments:
Post a Comment