ASP判断ID是否存在,有点问题,请指教!
ASP判断ID是否存在,我是用ajax的方式显示。注册部分代码为:<scriptlanguage="javascript">//JavaScriptDocumentfun...
ASP判断ID是否存在,我是用ajax的方式显示。
注册部分代码为:
<script language="javascript">
// JavaScript Document
function createAjax() { //该函数将返回XMLHTTP对象实例
var _xmlhttp;
try {
_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
try {
_xmlhttp=new XMLHttpRequest();
}
catch (e) {
_xmlhttp=false;
}
}
return _xmlhttp;
}
function checktgid(sname) { //该函数用来获取数据
var xmlhttp2=createAjax();
if (xmlhttp2) {
var span=document.getElementById('tuiguang_err'); // 获取显示节点
span.innerHTML="<span style='color:red'>正在查找......</span>";
xmlhttp2.open('post','checktuiguangid.asp?user_tuiguang='+sname+'&n='+Math.random(),true);
xmlhttp2.onreadystatechange=function() {
if (xmlhttp2.readyState==4 && xmlhttp2.status==200) {
span.innerHTML=unescape(xmlhttp2.responseText);
}
else {
span.innerHTML="<span style='color:red'>正在查找......</span>";
}
}
xmlhttp2.send(null);
}
}
<input name="user_tuiguang" type="text" onBlur="checktgid(this.value);">
<span id="tuiguang_err"></span>
checktuiguangid.asp部分代码是:
<!--#include file="conn.asp"-->
<%
dim sql,user
qutuiguang=trim(request("user_tuiguang"))
if qutuiguang="" then
Response.Write escape("<font color='#ff0000'>ID号不能为空</font>")
response.End()
elseif len(qutuiguang) < 5 then
Response.Write escape("<font color='#ff0000'>ID号长度不能小于11</font>")
end if
set rs=server.createobject("adodb.recordset")
sql="select ID from venshop_user where ID='"&qutuiguang&"'"
rs.open sql,conn,1,1
If not(rs.Eof And rs.Bof) Then
Response.Write escape("<font color='#ff0000'>ID号存在</font>")
Else
Response.Write escape("")
end if
rs.close
%>
结果是无论输入存在的或不存在的ID,都显示ID已存在,求教! 展开
注册部分代码为:
<script language="javascript">
// JavaScript Document
function createAjax() { //该函数将返回XMLHTTP对象实例
var _xmlhttp;
try {
_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e) {
try {
_xmlhttp=new XMLHttpRequest();
}
catch (e) {
_xmlhttp=false;
}
}
return _xmlhttp;
}
function checktgid(sname) { //该函数用来获取数据
var xmlhttp2=createAjax();
if (xmlhttp2) {
var span=document.getElementById('tuiguang_err'); // 获取显示节点
span.innerHTML="<span style='color:red'>正在查找......</span>";
xmlhttp2.open('post','checktuiguangid.asp?user_tuiguang='+sname+'&n='+Math.random(),true);
xmlhttp2.onreadystatechange=function() {
if (xmlhttp2.readyState==4 && xmlhttp2.status==200) {
span.innerHTML=unescape(xmlhttp2.responseText);
}
else {
span.innerHTML="<span style='color:red'>正在查找......</span>";
}
}
xmlhttp2.send(null);
}
}
<input name="user_tuiguang" type="text" onBlur="checktgid(this.value);">
<span id="tuiguang_err"></span>
checktuiguangid.asp部分代码是:
<!--#include file="conn.asp"-->
<%
dim sql,user
qutuiguang=trim(request("user_tuiguang"))
if qutuiguang="" then
Response.Write escape("<font color='#ff0000'>ID号不能为空</font>")
response.End()
elseif len(qutuiguang) < 5 then
Response.Write escape("<font color='#ff0000'>ID号长度不能小于11</font>")
end if
set rs=server.createobject("adodb.recordset")
sql="select ID from venshop_user where ID='"&qutuiguang&"'"
rs.open sql,conn,1,1
If not(rs.Eof And rs.Bof) Then
Response.Write escape("<font color='#ff0000'>ID号存在</font>")
Else
Response.Write escape("")
end if
rs.close
%>
结果是无论输入存在的或不存在的ID,都显示ID已存在,求教! 展开
1个回答
展开全部
用post传递数据估计方法不对,改get试下
xmlhttp2.open('post','checktuiguangid.asp?user_tuiguang='+sname+'&n='+Math.random(),true);
这段里的post换成 get
xmlhttp2.open('get','checktuiguangid.asp?user_tuiguang='+sname+'&n='+Math.random(),true);
xmlhttp2.open('post','checktuiguangid.asp?user_tuiguang='+sname+'&n='+Math.random(),true);
这段里的post换成 get
xmlhttp2.open('get','checktuiguangid.asp?user_tuiguang='+sname+'&n='+Math.random(),true);
更多追问追答
追问
还是不行,随便输什么都显示存在
追答
清了缓存,关掉浏览器再试。。
动态追综数据。。
sql="select ID from venshop_user where ID='"&qutuiguang&"'"
response.write sql
response.end
看看组合出来的sql句语是否正确。。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询