当前位置: 首页 > 图文教程 > 网络编程 > ASP > 网络寻呼机数据库版删除选中的消息deletemessage.asp

ASP
在ASP文件中调用DLL
ASP服务器组件的编程
在ASP.NET访问Excel文件
ADO.NET:通向未来之桥
ASP.Net的几大热点问题
DataList控件也玩分页
ASP.NET高级应用(1)
ASP.NET高级应用(2)
ASP.NET高级应用(3)
关于ASP.Net中的时间处理
ASP编写完整的一个IP所在地搜索类
ASP发送E-MAIL
建立MSXML 测试环境
怎样创建.NET Web Service
怎样创建.NET Web Service(2)
怎样创建.NET Web Service(3)
怎样创建.NET Web Service(4)
ASP.NET中的HTMLControl和WebControl
比尔·盖茨在微软开发者成功之路大会上的主题演讲
运用.NET读写Windows注册编辑表

ASP 中的 网络寻呼机数据库版删除选中的消息deletemessage.asp


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 148 ::
收藏到网摘: n/a

  <% response.buffer=true %>
<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>删除消息</title></head>

<body>
<%

id=request("id")
id=split(id,",")
page=clng(request("page"))

Set conn = Server.CreateObject("ADODB.connection")
    Provider = "Provider=Microsoft.Jet.OLEDB.4.0;"
    DBPath = "Data Source=" & Server.MapPath( "webuser.mdb" )

    conn.Open Provider & DBPath
    
    for i=0 to ubound(id)
        sql="delete from talks where id="&id(i)
        conn.execute(sql)
    next
    
    
    conn.close
    set conn=nothing
    response.redirect"history.asp?page="&page
%>
</body>

</html>