| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 591 人关注过本帖
标题:[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
快速回复:[asp]删除多条记录 在线等待..................
数据加载中...
 
   



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

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