XMLhttp Post方法提交數據到服務器端後出現亂字符的問題!!!
本例子需要兩個文件:xmlencode.htm和XMLencode.ASP
======================================
XMLencode.htm
============
XMLencode.ASP
============
這是孟子E章提供的一個方法,但是不知道該怎麼用,怎麼和下面的代碼加在一起用。
strA="submit1=Submit&str="+XMLstr;
objhttp.open("Post","yzreceive.ASPx",false);
objhttp.setRequestHeader("Content-Length",strA.length);
objhttp.setRequestHeader("Content-Type","text/XML");
objhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
objhttp.send(strA);
他上面的htm只是一個例子,你直接把一個表單的內容POST到XMLencode.ASP就行了。
能否說的詳細點
大家幫忙看一下
XMLHttp.setRequestHeader("content-type","application/x-www-form-urlencoded")