我有一个AJAX的实例:
var postContent ="name=" + encodeURIComponent("xiaocheng") + "&email=" + encodeURIComponent("[email protected]");
xmlhttp.open("POST", "a.aspx", true); 
xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); 
xmlhttp.send(postContent); 
这里如果用get的话,只要Request["name"]即可获取,但是现在用的是POST,那么在a.aspx中如何获取传过来的参数值???