使用FormData 向服务器发送数据,后台asp程序接收不到,请教原因!!!谢谢! 代码如下:

主程序:<!doctypehtml><html><head><metacharset="utf-8"></head><body><p><spanid="A1"></spa... 主程序:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<p><span id="A1"></span></p>
<button onclick="sendformdata()">发送数据</button>
<script type="text/javascript">
var xmlhttp;
function sendformdata()
{
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp!=null)
{
var formData = new FormData();
formData.append('username','lee');
formData.append('usercity','beijing');
xmlhttp.onreadystatechange=state_Change;
xmlhttp.open('POST','showinfo.asp');
xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlhttp.send(formData);
}
else
{
alert("您的浏览器不支持 XMLHTTP.");
}
}
function state_Change()
{
if (xmlhttp.readyState==4) // 服务器已经响应
{
if (xmlhttp.status==200) // 请求成功
{
// 显示服务器的响应数据
document.getElementById('A1').innerHTML=xmlhttp.responseText;
}
else
{
alert("接收XML数据时出现问题:" + xmlhttp.statusText);
}
}
}
</script>
</body>
</html>

后台ASP程序: showinfo.asp:

<%@LANGUAGE="VBSCRIPT" codepage="65001"%>

<%
username=request.form("username")
usercity=request.form("usercity")
response.write "名字:" & username&"<br>"
response.write "城市:" & username&"<br>"

%>

执行结果只有: 名字:
城市:
具体传的数据Lee、BeiJing 都没有,说明FormData 对象没把数据传给后台的showinfo.asp。

请教以上代码 哪里有问题?

谢谢!
展开
 我来答
EatingKun
2017-08-11 · TA获得超过5815个赞
知道大有可为答主
回答量:3185
采纳率:83%
帮助的人:889万
展开全部
1、
<form name="form1" method="post" action="search2.asp">

search.asp代码;
有问题吧!!!一个search2.asp一个却是search.asp!
2、
if resquest.form(key) then
sql="SELECT * From Book_Info where Auther ='"&resquest.form()&"'"
if resquest.form(key) then
这句应该为if resquest("key")<>"" then
resquest.form()却没给参数。
我晕!认真点!
追问
与我的问题无关那
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式