高分求助!!在哪里改?

lxs0410 2007-04-12 02:01:12
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../Connections/examonline.asp" -->
<%
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 = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form1") Then

MM_editConnection = MM_examonline_STRING
MM_editTable = "dbo.type1_panduan"
MM_editRedirectUrl = "ti.asp"
MM_fieldsStr = "text|value|key|value"
MM_columnsStr = "text|',none,''|key|',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("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close

If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If

End If
%>
<head>
<title>增加选择题</title>
</head>
<body>
......
</body>
<!-- InstanceEnd --></html>
变量声明和中间有一部分我就不帖了,提交表单后出错的提示是:
[Microsoft][ODBC SQL Server Driver][SQL Server]在关键字 'key' 附近有语法错误。
/examonline/teacher/tiadd.asp, 第 115 行
就是这:
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close

按照刚才一位高手的建议我家了俩行
Response.Write MM_editQuery '查看MM_editQuery 语句是否有语法错误
Response.End

Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
返回是insert into dbo.type1_panduan (text,key) values ('123','123')。他叫我改成insert into dbo.type1_panduan ([text],[key]) values ('123','123'),可是我什么都不会...我是新手.在源代码中哪里改啊?在线等,解决就给分
...全文
187 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
hjx398 2007-04-12
  • 打赏
  • 举报
回复
把MM_tableValues = MM_tableValues & ","
改成:MM_tableValues = "["&MM_tableValues&"]" & ","
再把MM_tableValues = MM_tableValues &MM_columns(MM_i)
这行改成:MM_tableValues = MM_tableValues & "[" & MM_columns(MM_i) & "]"

这样一定好了
hjx398 2007-04-12
  • 打赏
  • 举报
回复
把MM_tableValues = MM_tableValues & ","
改成:MM_tableValues = "["&MM_tableValues & ","
再把MM_tableValues = MM_tableValues &MM_columns(MM_i)
这行改成:MM_tableValues = MM_tableValues & "[" & MM_columns(MM_i) & "]"

这样一定好了

z109876543210 2007-04-12
  • 打赏
  • 举报
回复
MM_tableValues = MM_tableValues & MM_columns(MM_i)

=>

MM_tableValues = MM_tableValues & "[" & MM_columns(MM_i) & "]"
hjx398 2007-04-12
  • 打赏
  • 举报
回复
把MM_tableValues = MM_tableValues & MM_columns(MM_i)这行改成:
MM_tableValues = "["&MM_tableValues&"]"&"["& MM_columns(MM_i)&"]"

请加入电脑爱好群一起探讨ASP技术。群号:7499971

28,391

社区成员

发帖
与我相关
我的任务
社区描述
ASP即Active Server Pages,是Microsoft公司开发的服务器端脚本环境。
社区管理员
  • ASP
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧