请教 初学asp 测试错误 请高手帮忙 谢谢!
以下是我用dreamweaver生成的错误类型:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][ODBC Microsoft Access Driver] 输出目标 'Fax' 重复。
/regester2.asp, 第 142 行
按照别人提供的方法将文件所在目录的安全性能权限设置为所有,但问题依然存在。
所使用的系统 winxp pro + iis测试
全部代码如下:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/jxjsconn.asp" -->
<%
' *** Edit Operations: declare variables
Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd
Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId
Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i
MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If
' boolean to abort record edit
MM_abortEdit = false
' query string to execute
MM_editQuery = ""
%>
<%
' *** Redirect if username exists
MM_flag="MM_insert"
If (CStr(Request(MM_flag)) <> "") Then
MM_dupKeyRedirect="regester3.asp"
MM_rsKeyConnection=MM_jxjsconn_STRING
MM_dupKeyUsernameValue = CStr(Request.Form("re_name"))
MM_dupKeySQL="SELECT userName FROM Userinfo WHERE userName='" & Replace(MM_dupKeyUsernameValue,"'","''") & "'"
MM_adodbRecordset="ADODB.Recordset"
set MM_rsKey=Server.CreateObject(MM_adodbRecordset)
MM_rsKey.ActiveConnection=MM_rsKeyConnection
MM_rsKey.Source=MM_dupKeySQL
MM_rsKey.CursorType=0
MM_rsKey.CursorLocation=2
MM_rsKey.LockType=3
MM_rsKey.Open
If Not MM_rsKey.EOF Or Not MM_rsKey.BOF Then
' the username was found - can not add the requested username
MM_qsChar = "?"
If (InStr(1,MM_dupKeyRedirect,"?") >= 1) Then MM_qsChar = "&"
MM_dupKeyRedirect = MM_dupKeyRedirect & MM_qsChar & "requsername=" & MM_dupKeyUsernameValue
Response.Redirect(MM_dupKeyRedirect)
End If
MM_rsKey.Close
End If
%>
<%
' *** Insert Record: set variables
If (CStr(Request("MM_insert")) = "re_form2") Then
MM_editConnection = MM_jxjsconn_STRING
MM_editTable = "Userinfo"
MM_editRedirectUrl = "regester3.asp"
MM_fieldsStr = "re_name|value|re_password|value|re_adress|value|re_zipcode|value|re_mobile|value|re_tel|value|re_fax|value|re_qq|value|re_email|value"
MM_columnsStr = "userName|',none,''|password|',none,''|Addr|',none,''|postcode|none,none,NULL|mobile|none,none,NULL|Tel|none,none,NULL|Fax|none,none,NULL|Fax|none,none,NULL|email|',none,''"
' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")
' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
Next
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it
Dim MM_tableValues
Dim MM_dbValues
If (CStr(Request("MM_insert")) <> "") Then
' create the sql insert statement
MM_tableValues = ""
MM_dbValues = ""
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_formVal = MM_fields(MM_i+1)
MM_typeArray = Split(MM_columns(MM_i+1),",")
MM_delim = MM_typeArray(0)
If (MM_delim = "none") Then MM_delim = ""
MM_altVal = MM_typeArray(1)
If (MM_altVal = "none") Then MM_altVal = ""
MM_emptyVal = MM_typeArray(2)
If (MM_emptyVal = "none") Then MM_emptyVal = ""
If (MM_formVal = "") Then
MM_formVal = MM_emptyVal
Else
If (MM_altVal <> "") Then
MM_formVal = MM_altVal
ElseIf (MM_delim = "'") Then ' escape quotes
MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
Else
MM_formVal = MM_delim + MM_formVal + MM_delim
End If
End If
If (MM_i <> LBound(MM_fields)) Then
MM_tableValues = MM_tableValues & ","
MM_dbValues = MM_dbValues & ","
End If
MM_tableValues = MM_tableValues & MM_columns(MM_i)
MM_dbValues = MM_dbValues & MM_formVal
Next
MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"
If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject(")
MM_editCmd.ActiveConnection = MM_editConnection
MM_ = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
session("username")=request.Form("userId")
session("MM_UserAuthorization")="0"
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>注册向导</title>
<link href="css/jxjs.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.STYLE1 {color: #666666}
.STYLE2 {font-size: 14px}
.STYLE3 {color: #FF0000}
</style>
<script type="text/JavaScript">
<!--
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_validateForm() { //v4.0
var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
if (val) { nm=val.name; if ((val=val.value)!="") {
if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
} else if (test!='R') { num = parseFloat(val);
if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
min=test.substring(8,p); max=test.substring(p+1);
if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
} } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
} if (errors) alert('The following error(s) occurred:\n'+errors);
document.MM_returnValue = (errors == '');
}
if (re_form2.re_password.value !=re_form2.re_password2.value)
{
errors += '两次输入密码不一致'
re_form2.re_password.value="";
re_form2.re_password2.value="";
re_form2.re_password.focus();
}
//-->
</script>
</head>
<body>
<div id="in_wrap">
<div id="in_header">
<table class="in_table" width="780" height="60" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="120">?</td>
<td width="583">?</td>
<td width="77"><ul>
<li class="in_top"><a href="#" >加入收藏</a></li>
<li class="in_top"><a href="contact.htm" target="_blank" >联系我们</a></li>
</ul>
</td>
</tr>
</table>
</div><!--header 页眉部分 -->
<div id="in_nav_time">时间
</div> <!--用于显示登录信息-->
<div id="in_nav_nav"><ul>
<li><a href="index.asp" target="_blank" class="in_nav_top">首页</a></li>
<li class="menuDiv"></li>
<li><a href="regester1.asp" target="_blank" class="in_nav_top">注册会员</a></li>
<li class="menuDiv"></li><li><a class="in_nav_top" href="login.asp" target="_blank">用户登录</a></li> <li class="menuDiv"></li>
<li><a href="getjifen.htm" target="_blank" class="in_nav_top">积分获取</a></li>
<li class="menuDiv"></li>
<li><a href="controlpanel.htm" target="_blank" class="in_nav_top">控制面板</a></li>
<li class="menuDiv"></li>
<li><a href="form.asp" target="_blank" class="in_nav_top">论坛</a></li>
<li class="menuDiv"></li>
<li><a href="jishufield.asp" target="_blank" class="in_nav_top">技术园地</a></li>
<li class="menuDiv"></li><li><a href="zixun.asp" target="_blank" class="in_nav_top">行业资讯</a></li>
</ul>
</div><!--导航栏部分-->
<!--登录框-->
<!--供求信息-->
<!--左侧栏信息结束-->
<div id="re_left">
<ol><li class="STYLE1">接受注册协议</li>
<li class="STYLE3">填写注册信息</li>
<li>注册完成</li>
</ol>
</div>
<div id="re_main">
<form action="<%=MM_editAction%>" method="POST" name="re_form2" id="re_form2" onsubmit="MM_validateForm('re_name','','R','re_email','','RisEmail','re_password','','R','re_password2','','R');return document.MM_returnValue">
<table width="450" height="366" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2"><div align="center" id="re2_top" class="STYLE2"><b>新用户注册</b></div></td>
</tr>
<tr>
<td width="127">*用户名:</td>
<td width="326"><input name="re_name" type="text" class="re_text" id="re_name" tabindex="1" size="30" maxlength="30" />
<span class="STYLE3">带*项为必填项</span></td>
</tr>
<tr>
<td>*密码:</td>
<td><input name="re_password" type="password" class="re_text" id="re_password" tabindex="2" size="30" maxlength="30" />
<span class="STYLE3">带*项为必填项</span></td>
</tr>
<tr>
<td>*确认密码:</td>
<td><input name="re_password2" type="password" class="re_text" id="re_password2" tabindex="3" size="30" maxlength="30" />
<span class="STYLE3">带*项为必填项</span></td>
</tr>
<tr>
<td>地址:</td>
<td><input name="re_adress" type="text" class="re_text" id="re_adress" tabindex="4" size="30" maxlength="30" /></td>
</tr>
<tr>
<td>邮编:</td>
<td><input name="re_zipcode" type="text" class="re_text" id="re_zipcode" tabindex="5" size="30" maxlength="30" /></td>
</tr>
<tr>
<td>手机:</td>
<td><input name="re_mobile" type="text" class="re_text" id="re_mobile" tabindex="6" size="30" maxlength="30" /></td>
</tr>
<tr>
<td>电话:</td>
<td><input name="re_tel" type="text" class="re_text" id="re_tel" tabindex="7" size="30" maxlength="30" /></td>
</tr>
<tr>
<td>传真:</td>
<td><input name="re_fax" type="text" class="re_text" id="re_fax" tabindex="8" size="30" maxlength="30" /></td>
</tr>
<tr>
<td height="29">*QQ</td>
<td><input name="re_qq" type="text" class="re_text" id="re_qq" size="30" maxlength="30" />
<span class="STYLE3">带*项为必填项</span></td>
</tr>
<tr>
<td height="29">*Email:</td>
<td><input name="re_email" type="text" class="re_text" id="re_email" tabindex="9" size="30" maxlength="30" />
<span class="STYLE3">带*项为必填项</span></td>
</tr>
<tr>
<td colspan="2" ><div id="re2_td">
<input name="re2_submit" type="submit" id="re2_submit" tabindex="10" value="提交" />
??
<input name="re2_reset" type="reset" id="re2_reset" tabindex="12" value="重置" />
</div></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="re_form2">
</form>
</div>
<div id="in_footer"> <p id="in_bottom"><a href="aboutus.htm" target="_blank">关于我们</a> | <a href="contact.htm" target="_blank">联系我们</a> | <a href="ader.htm" target="_blank">广告合作</a> | <a href="pay.htm" target="_blank">付款方式</a> | <a href="help.htm" target="_blank">网站帮助</a> | <a href="otherlink.htm" target="_blank">相关链接</a></p>
</div>
</div>
</body>
</html>