获取通过xmlHttp.open(GET [重复]发送的服务器端值

我正在使用此Ajax代码。但是我不知道如何使用Javascript在服务器端的asp上检索value1的值。

在我的服务器端,我想要类似<%var newdata = value1(这是服务器端的一个-已发送到此处)%>

请帮忙 !!!太感谢了

我知道PHP可以实现,但如何使用javascript

    <script>

function ajaxNow(_data)

{

var xmlHttp;

try

{

/* Firefox, Opera 8.0+, Safari */

xmlHttp=new XMLHttpRequest();

}

catch (e)

{

/* newer IE */

try

{

xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");

}

catch (e)

{

/* older IE */

try

{

xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");

}

catch (e)

{

alert("Your browser is old and does not have AJAX support!");

return false;

}

}

}

xmlHttp.onreadystatechange=function()

{

if(xmlHttp.readyState==4)

{

/* this puts the value into an alert */

alert("Value read is: "+xmlHttp.responseText);

}

}

xmlHttp.open("GET","ajax_file.asp?value1="+_data,true);

xmlHttp.send(null);

}

</script>

回答:

当您的Ajax-Request成功时,您将在Request-Object的QueryString-Collection中拥有querystring-

variables。

可以在服务器端像这样工作:

<% var newdata = Request.QueryString("value1"); %>

以上是 获取通过xmlHttp.open(GET [重复]发送的服务器端值 的全部内容, 来源链接: utcz.com/qa/406904.html

回到顶部