ajaxHttpRequest.open("POST",url, true)
ajaxHttpRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
ajaxHttpRequest.send(values);
ajaxHttpRequest.onreadystatechange = processRequest;
}
function Button1_onclick() {
ajaxInit()
ajaxSendPost("ajaxchat.aspx", "username=name", box);
}
为什么执行过后,Request["username"] 取不到值呀?
我所有代码都是在这页面执行的,ajaxchat.aspx