<small id='gxzTv'></small><noframes id='gxzTv'>

  • <legend id='gxzTv'><style id='gxzTv'><dir id='gxzTv'><q id='gxzTv'></q></dir></style></legend>
        <bdo id='gxzTv'></bdo><ul id='gxzTv'></ul>

    1. <i id='gxzTv'><tr id='gxzTv'><dt id='gxzTv'><q id='gxzTv'><span id='gxzTv'><b id='gxzTv'><form id='gxzTv'><ins id='gxzTv'></ins><ul id='gxzTv'></ul><sub id='gxzTv'></sub></form><legend id='gxzTv'></legend><bdo id='gxzTv'><pre id='gxzTv'><center id='gxzTv'></center></pre></bdo></b><th id='gxzTv'></th></span></q></dt></tr></i><div id='gxzTv'><tfoot id='gxzTv'></tfoot><dl id='gxzTv'><fieldset id='gxzTv'></fieldset></dl></div>

      1. <tfoot id='gxzTv'></tfoot>

        使用 Javascript 和 ASP 从 AJAX 获取价值

        时间:2023-10-13
          <bdo id='SKqHr'></bdo><ul id='SKqHr'></ul>

            <legend id='SKqHr'><style id='SKqHr'><dir id='SKqHr'><q id='SKqHr'></q></dir></style></legend>
          1. <small id='SKqHr'></small><noframes id='SKqHr'>

            <i id='SKqHr'><tr id='SKqHr'><dt id='SKqHr'><q id='SKqHr'><span id='SKqHr'><b id='SKqHr'><form id='SKqHr'><ins id='SKqHr'></ins><ul id='SKqHr'></ul><sub id='SKqHr'></sub></form><legend id='SKqHr'></legend><bdo id='SKqHr'><pre id='SKqHr'><center id='SKqHr'></center></pre></bdo></b><th id='SKqHr'></th></span></q></dt></tr></i><div id='SKqHr'><tfoot id='SKqHr'></tfoot><dl id='SKqHr'><fieldset id='SKqHr'></fieldset></dl></div>

                  <tbody id='SKqHr'></tbody>

                  <tfoot id='SKqHr'></tfoot>
                • 本文介绍了使用 Javascript 和 ASP 从 AJAX 获取价值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

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

                  I am using this Ajax code. But I dont know how i will retrieve my value of value1 on my server-side asp using Javascript.

                  在我的服务器端,我想要类似的东西<%var newdata = value1 (这是来自服务器端的 - 在此处发送)%>

                  On my serverside I want to have something like <% var newdata = value1 ( which is the one from the serverside - which was send here) %>

                  请帮忙!!!谢谢一百万

                  Please Help !!! thanks a million

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

                  I know it is possible with PHP but how do i do with 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.

                  When your Ajax-Request succeeds you will have the querystring-variables in the QueryString-Collection of the Request-Object.

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

                  Could work like this on the server side:

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

                  这篇关于使用 Javascript 和 ASP 从 AJAX 获取价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:文件 URL “不允许加载本地资源"在 Internet 浏 下一篇:在 ASP 经典中编写 JavaScript

                  相关文章

                  最新文章

                  <tfoot id='4c9pm'></tfoot>

                • <i id='4c9pm'><tr id='4c9pm'><dt id='4c9pm'><q id='4c9pm'><span id='4c9pm'><b id='4c9pm'><form id='4c9pm'><ins id='4c9pm'></ins><ul id='4c9pm'></ul><sub id='4c9pm'></sub></form><legend id='4c9pm'></legend><bdo id='4c9pm'><pre id='4c9pm'><center id='4c9pm'></center></pre></bdo></b><th id='4c9pm'></th></span></q></dt></tr></i><div id='4c9pm'><tfoot id='4c9pm'></tfoot><dl id='4c9pm'><fieldset id='4c9pm'></fieldset></dl></div>
                • <legend id='4c9pm'><style id='4c9pm'><dir id='4c9pm'><q id='4c9pm'></q></dir></style></legend>

                  1. <small id='4c9pm'></small><noframes id='4c9pm'>

                        <bdo id='4c9pm'></bdo><ul id='4c9pm'></ul>