ajax post getting value in CLASSIC asp(ajax post 在 CLASSIC asp 中获得价值)
问题描述
我正在尝试使用 jquery AJAX 获取已发布文本框的值:
I am trying to get the value of the posted textbox using jquery AJAX:
这是我的代码:
$(document).ready(function(){
$('#submitButton').click(function() {
$.ajax({
type: "POST",
url: "test.asp",
data: $("#form1").serialize(),
cache: false,
dataType: "html",
success: function(responseText){
alert(responseText);
},
error: function(resposeText){
alert(resposeText);
},
});
return false;
});
});
这是 test.asp 页面:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
dim vwPW
vwPW = request.QueryString("vwPW")
response.write "returned " & vwPW
%>
我的表格是:
<form id="form1" method="post" action="">
<table width="100" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input name="vwPW" id="vwPW" type="password" class="textBox" maxlength="10" /></td>
<td><button class="GreyB" id="submitButton" name="submitButton"><span style="color:#000">Log in</span></button></td>
</tr>
</table>
</form>
我得到的只是重新调整",之后什么都没有.我会做错什么?
All i get is "retuned" and nothing after that. What would i be doing incorrect?
大卫
推荐答案
你的 ajax 正在使用 POST
,ASP 需要使用 request.form
而不是request.querystring
- 或者,将您的 ajax 更改为 GET
.
Your ajax is using POST
, ASP will need to get the value using request.form
instead of request.querystring
- alternatively, change your ajax to GET
.
这篇关于ajax post 在 CLASSIC asp 中获得价值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ajax post 在 CLASSIC asp 中获得价值


- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Flexslider 箭头未正确显示 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01