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>