%@ TRANSACTION = Required LANGUAGE = "JScript" %>
The Transaction just comitted."); Response.Write ("This message came from the "); Response.Write ("OnTransactionCommit() event handler."); } // The Transacted Script Abort Handler. This function // will be called if the script transacted aborts // Note that in the example above, there is no way for the // script not to commit. function OnTransactionAbort() { Response.Write ("
The Transaction just aborted."); Response.Write ("This message came from the "); Response.Write ("OnTransactionAbort() event handler."); } %>