用ASP删除ACCESS数据库中某一字段内容
比如我想删除表123中字段ID为3的那一行数据怎么写大家帮我写个完整的啊...ACCESS数据库中有一个表为123123里有一个字段IDID下面有12345我想删除序号为...
比如 我想删除 表 123 中 字段ID 为3的 那一行数据 怎么写
大家帮我写个完整的啊...
ACCESS数据库中有 一个表 为 123 123里有一个字段 ID
ID下面 有 1 2 3 4 5
我想删除 序号为2的行 要大家帮我写一个ASP程序 来完成 展开
大家帮我写个完整的啊...
ACCESS数据库中有 一个表 为 123 123里有一个字段 ID
ID下面 有 1 2 3 4 5
我想删除 序号为2的行 要大家帮我写一个ASP程序 来完成 展开
6个回答
展开全部
<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>
花了一个半小时的时间,经测试通过,看看行不?有不明白的地方可以问我。
</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")
conn.execute("delete from table123 where id=3")
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<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
%>
<%
if Request("action")="delete" then call del()
Sub del()
id=Request("id")
conn.execute("delete from [123] where id="&id)
End sub
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
delete from 123 where id=3
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
delete from 123 where id=2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询