日期:2014-05-16  浏览次数:20817 次

如何获取后台页面参数
 aspxhttp = new XMLHttpRequest();
aspxhttp.open("POST", "zouye.aspx/em", true);
        aspxhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
        aspxhttp.send();

在后台zuoye.cs文件中代码为
   public string[,] em()
    {
        string[,] employee=new string[2,4];
        employee[0,0] = "aspx于";
        employee[0, 1] = "14";
        employee[0, 2] = "F";
        employee[0, 3] = "1.jpg";
        employee[1, 0] = "aspx王";
        employee[1, 1] = "15";
        employee[1, 2] = "F";
        employee[1, 3] = "1.jpg";
        return employee;

    }

我在前台怎么获取这个返回的数组呢?
------解决方案--------------------
aspxhttp = new XMLHttpRequest();
aspxhttp.open("POST", "zouye.aspx/em", true);
aspxhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
aspxhttp.onreadystatechange=function(){//////
  if(aspxhttp.readyState==4){
      if(aspxhttp.status==200)alert(aspxhttp.responseText)
      else alert('出错:'+aspxhttp.status+'\n'+aspxhttp.responseText);
  }
}

aspxhttp.send();