Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
ObjectContext Object
All Objects
All Events
EVENT: ObjectContext.OnTransactionCommit
The
OnTransactionCommit
event occurs when a transaction has been completed. The
OnTransactionCommit
event is simply a subroutine with a reserved name that is referenced by the script. It can contain any script you may wish to run when the transaction is completed.
Code:
<% @Transaction=Required Language="VBScript" %>
<HTML>
<HEAD>
</HEAD>
<BODY>
<%
Do
x=x+1
Response.Write x & "<BR>"
Loop While x < 5
%>
</BODY>
</HTML>
Sub
OnTransactionCommit()
Response.Write "The transaction committed. This is the Transaction Commit Handler."
End Sub
Output:
1
2
3
4
5
The transaction committed. This is the Transaction Commit Handler.
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information