ASP事务处理

发布时间:2007-03-22 22:57:00 阅读:924次

conn.asp

<%
set conn=Server.CreateObject("ADODB.Connection")
DBPath=Server.MapPath("db1.mdb")
conn.Open "provider=microsoft.jet.oledb.4.0;data source="&dbpath
%>

transaction.asp

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>abc</title>
</head>
<!--#include file="conn.asp"-->
<body>
<%
on error resume next
conn.begintrans
set rs=conn.execute("select * from forum")
if conn.errors.count=0 then
       conn.begintrans
    do while not rs.eof
    response.write rs("userhome")
    rs.movenext
    loop
else
       response.write "有错误,取消操作!!"
    conn.rollbacktrans
end if
conn.close
set conn=nothing
%>
</body>
</html>

如有问题,可以QQ搜索群1028468525加入群聊,欢迎一起研究技术

支付宝 微信

有疑问联系站长,请联系QQ:QQ咨询
下一篇:ASP Command

转载请注明:ASP事务处理 出自老鄢博客 | 欢迎分享