检测用户名是否存在的问题
用户前台<td width="18%" height="20" align="right" bgcolor="#EEF7FF" class="STYLE4"><span class="STYLE1"> <span class="STYLE6">*</span> </span> 用 户 名:</td>
<td width="34%" align="left" bgcolor="#FFFFFF"><input name="username" type="text" id="username" maxlength="20" />
<input type="button" name="Submit4" value="检测用户名" onClick="checkName()"></td>
checkName()代码:
<script language="javascript">
function checkName()
{
var NameStr=document.all.userame.value
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", "UserCheckReg.asp?uName="+NameStr, false);
xmlhttp.send();
if(xmlhttp.ResponseText==1)
alert("用户名已经存在");
else
alert("可以使用!");
}
</script>
UserCheckReg.asp代码:
<script language="javascript">
function checkName()
{
var NameStr=document.all.userame.value
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("POST", "UserCheckReg.asp?uName="+NameStr, false);
xmlhttp.send();
if(xmlhttp.ResponseText==1)
alert("用户名已经存在");
else
alert("可以使用!");
}
</script>
在网上看到很多类似的代码,可放到我的程序里当点击“检查用户名”的按钮时一点反应也没有,各位帮我看看怎么回事?