用ASP删除ACCESS数据库中某一字段内容

比如我想删除表123中字段ID为3的那一行数据怎么写大家帮我写个完整的啊...ACCESS数据库中有一个表为123123里有一个字段IDID下面有12345我想删除序号为... 比如 我想删除 表 123 中 字段ID 为3的 那一行数据 怎么写

大家帮我写个完整的啊...
ACCESS数据库中有 一个表 为 123 123里有一个字段 ID

ID下面 有 1 2 3 4 5

我想删除 序号为2的行 要大家帮我写一个ASP程序 来完成
展开
 我来答
剑丹溪dJ
2008-11-20 · TA获得超过167个赞
知道小有建树答主
回答量:340
采纳率:0%
帮助的人:203万
展开全部
<html><head><title>用ASP删除ACCESS数据库中的数据</title>
</head><body><ctenter>
<%Dim Db,StrSQL,Rs
Set Db=Server.CreateObject("ADODB.Connection")
Db.Open "Dbq="&Server.Mappath("数据库名称.mdb")&";Driver={Microsoft Access Driver (*.mdb)};"
Dim action,ID
ID=trim(request.QueryString ("ID"))
action=trim(request.QueryString ("action"))
IF action="del" then
StrSQL="delete from 123 where ID=" & ID
Db.execute(StrSQL)
End IF
StrSQL="Select * From 123 order by ID"
Set Rs=Db.execute(StrSQL)
Response.Write"<table wIDth='500' bordercolor='#003333' border='1'><tr>"
Response.Write "<td><font color=red>ID</font></td>"
Response.Write "<td><font color=red>第1字段名称</font></td>"
Response.Write "<td><font color=red>第2字段名称</font></td>"

Response.Write "<td><font color=red>操作</font></td></tr>"
DO While Not Rs.eof
Response.Write "<tr><td><font color=red>"&rs("ID")&"</font></td>"
Response.Write "<td>"&rs("第1字段名称")&"</td>"
Response.Write "<td>"&rs("第2字段名称")&"</td>"

Response.Write "<td><a href='?action=del&ID=" & rs("ID") & "'>删除</a></td>"
Rs.MoveNext
Loop
Response.Write "</table>"
Db.close
Set Db=nothing
%>
</center>
</body></html>
花了一个半小时的时间,经测试通过,看看行不?有不明白的地方可以问我。
匿名用户
2008-11-20
展开全部
表名不要用纯数字
conn.execute("delete from table123 where id=3")
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
super_manager
2008-11-20 · TA获得超过698个赞
知道小有建树答主
回答量:248
采纳率:0%
帮助的人:320万
展开全部
<a href="?action=delete&id=2">删除</a>

<%
if Request("action")="delete" then call del()

Sub del()
id=Request("id")
conn.execute("delete from [123] where id="&id)
End sub
%>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
gl342813764
2008-11-20 · TA获得超过211个赞
知道小有建树答主
回答量:203
采纳率:0%
帮助的人:251万
展开全部
delete from 123 where id=3
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tyjoyice
2008-11-20 · 超过48用户采纳过TA的回答
知道答主
回答量:166
采纳率:0%
帮助的人:157万
展开全部
delete from 123 where id=2
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式