标题:[asp]删除多条记录 在线等待..................
只看楼主
jxyjiy
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-8-14
 问题点数:0 回复次数:1 
[asp]删除多条记录 在线等待..................
这个问题闹的我好半天了..各位编程高手帮忙.
以下是删除过程.
<%
Sub delete()
ID = Trim(Request.Form("ID"))
If Trim(Request.Form("ID")) = "" Then
Response.write("<script>alert('对不起,您至少选择一条需要删除的日志!');location.href='AMwrite.asp'</script>")
Response.End
End If
Dim things
Dim things_numRows
Set things = Server.CreateObject("ADODB.Recordset")
things.ActiveConnection = MM_conn_STRING
things.Source = "SELECT * FROM thing Where ID In("& ID &")"
things.CursorType = 1
things.CursorLocation = 2
things.LockType = 3
things.Open()
If things.Eof And things.Bof Then
things.Close()
Set things = Nothing
Response.Write("<script>alert('您所提交的数据编号不存在,可能已经被管理员删除!');location.href='AMwrite.asp'</script>")
Response.End
Else
things.delete()
things_numRows = 0
things.Close()
Set things = Nothing
Response.Write("<script>alert('日志删除成功!');location.href='AMwrite.asp'</script>")
Response.End
End If
End Sub
%>
上面是删除过程的代码怎么删除无法删除多条记录呢?
--------------------------------------------------------
Trim(Request.Form("ID")) 输出为 :
1,2,3,4,5,6,7
--------------------------------------------------------
请各位帮忙看看啊!~

[[it] 本帖最后由 jxyjiy 于 2008-8-14 15:39 编辑 [/it]]
搜索更多相关主题的帖子: asp 记录 删除 
2008-08-14 15:33
jxyjiy
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-8-14
得分:0 
在线等..................
2008-08-14 15:38



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-228266-1-1.html




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

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