小编典典

使用Javascript和ASP从AJAX获得价值

ajax

我正在使用此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>

阅读 221

收藏
2020-07-26

共1个答案

小编典典

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

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

<% var newdata = Request.QueryString("value1"); %>
2020-07-26