我有一个网页,需要从服务器(SQL -Oracle)获取一些值,我正在尝试使用 .responseText从服务器端获取信息到客户端。信息是一个数组。在服务器端 我有一个需要从数据库中获取值的函数。我尝试了一些东西,但我得到了长时间的测试作为回应
<!doctype HTML public"-// W3C .... etc.
this is my code from client-side.
xmlHttp.onreadystatechange=function()
{
if(xmlHttp.readyState==4)
{
alert(xmlHttp.responseText)
var tabScore = new Array();
tabScore= xmlHttp.responseText;
如果你知道如何=),请帮助我。 我想我的问题是如何获得服务器端到客户端的函数的值/结果 P.s使用ASP和Javascript