Get value from AJAX using Javascript and ASP(使用 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 获取价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Javascript 和 ASP 从 AJAX 获取价值
基础教程推荐
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01