| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1134 人关注过本帖
标题:dreamweaver里在服务器行为中添加了检查用户名后就不能插入数据了
只看楼主 加入收藏
stderby123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2010-12-20
结帖率:0
收藏
已结贴  问题点数:20 回复次数:7 
dreamweaver里在服务器行为中添加了检查用户名后就不能插入数据了
技术信息(用于支持人员)

错误类型:
Microsoft JET Database Engine (0x80004005)
不能使用 '';文件已在使用中。
/shuju/ss.asp, 第 139 行


浏览器类型:
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)

网页:
POST 56 ??? /shuju/ss.asp

POST Data:
textfield=8003456456&Submit=%CC%E1%BD%BB&MM_insert=form1
------------------------------------------------------------------------
这事代码
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/a.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="check1.asp"
  MM_rsKeyConnection=MM_a_STRING
  MM_dupKeyUsernameValue = CStr(Request.Form("textfield"))
  MM_dupKeySQL="SELECT carnum FROM carnum WHERE carnum='" & 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")) = "form1") Then

  MM_editConnection = MM_a_STRING
  MM_editTable = "carnum"
  MM_editRedirectUrl = "OK.asp"
  MM_fieldsStr  = "textfield|value"
  MM_columnsStr = "carnum|',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

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

End If
%>
<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_a_STRING
Recordset1.Source = "SELECT * FROM carnum ORDER BY num DESC"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = 20
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<table width="542" border="1">
  <%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
    <tr>
      <td width="92"><%=(Recordset1.Fields.Item("num").Value)%></td>
      <td width="434"><%=(Recordset1.Fields.Item("carnum").Value)%>(<%=(Recordset1.Fields.Item("date").Value)%>)</td>
    </tr>
    <%
  Repeat1__index=Repeat1__index+1
  Repeat1__numRows=Repeat1__numRows-1
  Recordset1.MoveNext()
Wend
%>
</table>

<p>
  <%
Recordset1.Close()
Set Recordset1 = Nothing
%>
</p>
<form id="form1" name="form1" method="POST" action="<%=MM_editAction%>">
  <label>卡号
  <input type="text" name="textfield" value="800"/>
  </label>
  <label>
  <input type="submit" name="Submit" value="提交" />
</label>
  <input type="hidden" name="MM_insert" value="form1">
</form>

<p>&nbsp;</p>
搜索更多相关主题的帖子: 服务器 浏览器 compatible Microsoft Windows 
2011-08-31 17:21
stderby123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2010-12-20
收藏
得分:0 
我用的是ACCSEE数据库
2011-08-31 17:22
stderby123
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2010-12-20
收藏
得分:0 
这事链接字符串
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("../1.mdb")
2011-08-31 17:22
dzt0001
Rank: 13Rank: 13Rank: 13Rank: 13
等 级:蒙面侠
威 望:5
帖 子:1281
专家分:4998
注 册:2005-10-12
收藏
得分:4 
用DW生成的ASP代码太...复杂了,不建议用,修改起来很麻烦。

----我怎能在别人的苦难面前转过脸去----
2011-08-31 17:34
towering
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:261
专家分:507
注 册:2007-10-9
收藏
得分:4 
之前研究过,貌似以 MM_ 开头的地方有重复,做一次服务器行为要修改一次。

具体是哪里真的忘了。。。

我的ASP小站:http://www./
2011-09-01 09:09
haojialin
Rank: 2
等 级:论坛游民
帖 子:12
专家分:59
注 册:2011-7-30
收藏
得分:4 
数据库在使用中吧

沈阳网站建设、沈阳网站制作、沈阳网页设计-领航网络工作室-www.
2011-09-01 11:42
zsaihz
Rank: 2
等 级:论坛游民
帖 子:7
专家分:46
注 册:2011-9-2
收藏
得分:4 
把数据库关了再运行试试,应该是数据开着的原因!
2011-09-02 09:45
aspic
Rank: 17Rank: 17Rank: 17Rank: 17Rank: 17
等 级:贵宾
威 望:51
帖 子:2258
专家分:8050
注 册:2008-2-18
收藏
得分:4 
好多MM
2011-09-02 11:45
快速回复:dreamweaver里在服务器行为中添加了检查用户名后就不能插入数据了
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.020119 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved