XMLHTTPRequest对象POST方式 Send方法无法传送数据的解决方法
仍然为了大家别走弯路 我刚测试的时候 open中指定使用post方式传递数据send("Content=123")
content = Request.Form("Content")是接受不到数据的
在open方法前加入
xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
就可以了