Page events

  • Thread starter Thread starter Josh
  • Start date Start date
J

Josh

Anyone know what the Page_AbortTransaction and Page_CommitTRansaction events
are for? Are they used by some kind of built in data binding?
 
Those events are used when the page is using enterprise service
transactions (the @Page directive will have a Transaction attribute,
i.e. Transaction=Required). For these pages, the microsoft distributed
transaction coordinator manages interactions with the database(s) and
other resource managers (like MSMQ) to make sure all the work on the
page is either commited or rollbacked as one atomic action.
 
Back
Top